Skip to content

Commit 0a3422a

Browse files
authored
Update CellRangerGexCountStep.java
1 parent af83b52 commit 0a3422a

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

singlecell/src/org/labkey/singlecell/run/CellRangerGexCountStep.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff 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());

0 commit comments

Comments
 (0)