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 2d3d620 commit 2e6c819Copy full SHA for 2e6c819
singlecell/src/org/labkey/singlecell/run/CellRangerGexCountStep.java
@@ -645,8 +645,14 @@ public File getInclusionListFile(Logger logger) throws PipelineJobException
645
try
646
{
647
Path exePath = Files.readSymbolicLink(exe.toPath());
648
- logger.debug("cellranger symlink target: " + exePath.toString());
649
- exe = FileUtil.resolveFile(exePath.toFile());
+ logger.debug("cellranger symlink target: " + exePath);
+ if (!exePath.isAbsolute())
650
+ {
651
+ exePath = exe.getParentFile().toPath().resolve(exePath);
652
+ logger.debug("resolved symlink target: " + exePath);
653
+ }
654
+
655
+ exe = exePath.toFile();
656
logger.debug("cellranger resolved symlink target: " + exe.getPath());
657
}
658
catch (IOException e)
0 commit comments