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 d75cf73 commit 89f4d54Copy full SHA for 89f4d54
singlecell/src/org/labkey/singlecell/run/CellRangerGexCountStep.java
@@ -646,10 +646,7 @@ public File getInclusionListFile(Logger logger) throws PipelineJobException
646
{
647
Path exePath = Files.readSymbolicLink(exe.toPath());
648
logger.debug("cellranger symlink target: " + exePath.toString());
649
- logger.debug("cellranger symlink absolute path: " + exePath.toAbsolutePath());
650
- logger.debug("cellranger symlink realpath path: " + exePath.toRealPath());
651
-
652
- exe = exePath.toFile();
+ exe = FileUtil.resolveFile(exePath.toFile());
653
logger.debug("cellranger resolved symlink target: " + exe.getPath());
654
}
655
catch (IOException e)
0 commit comments