We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e6c819 commit af83b52Copy full SHA for af83b52
singlecell/src/org/labkey/singlecell/run/CellRangerGexCountStep.java
@@ -648,7 +648,13 @@ public File getInclusionListFile(Logger logger) throws PipelineJobException
648
logger.debug("cellranger symlink target: " + exePath);
649
if (!exePath.isAbsolute())
650
{
651
- exePath = exe.getParentFile().toPath().resolve(exePath);
+ File parent = exe.getParentFile();
652
+ if (parent.getPath().endsWith("bin"))
653
+ {
654
+ parent = parent.getParentFile();
655
+ }
656
+
657
+ exePath = parent.toPath().resolve(exePath);
658
logger.debug("resolved symlink target: " + exePath);
659
}
660
0 commit comments