File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
singlecell/src/org/labkey/singlecell/run Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -649,11 +649,6 @@ public File getInclusionListFile(Logger logger) throws PipelineJobException
649649 if (!exePath .isAbsolute ())
650650 {
651651 File parent = exe .getParentFile ();
652- if (parent .getPath ().endsWith ("bin" ))
653- {
654- parent = parent .getParentFile ();
655- }
656-
657652 exePath = parent .toPath ().resolve (exePath );
658653 logger .debug ("resolved symlink target: " + exePath );
659654 }
@@ -667,7 +662,7 @@ public File getInclusionListFile(Logger logger) throws PipelineJobException
667662 }
668663 }
669664
670- File il = new File (exe .getParentFile (), "lib/python/cellranger/barcodes/" + _inclusionListFile );
665+ File il = new File (exe .getParentFile (), "../ lib/python/cellranger/barcodes/" + _inclusionListFile );
671666 if (!il .exists ())
672667 {
673668 throw new PipelineJobException ("Unable to find file: " + il .getPath ());
You can’t perform that action at this time.
0 commit comments