Skip to content

Commit 7de9d47

Browse files
committed
Use absolute location of cellrange executable
1 parent 2c46711 commit 7de9d47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ public File getInclusionListFile(Logger logger) throws PipelineJobException
650650
}
651651
}
652652

653-
File il = new File(exe.getParentFile(), "lib/python/cellranger/barcodes/" + _inclusionListFile);
653+
File il = new File(exe.getAbsoluteFile().getParentFile(), "lib/python/cellranger/barcodes/" + _inclusionListFile);
654654
if (!il.exists())
655655
{
656656
throw new PipelineJobException("Unable to find file: " + il.getPath());

0 commit comments

Comments
 (0)