Skip to content

Commit 89f4d54

Browse files
committed
Debug cellranger/symlinks
1 parent d75cf73 commit 89f4d54

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -646,10 +646,7 @@ public File getInclusionListFile(Logger logger) throws PipelineJobException
646646
{
647647
Path exePath = Files.readSymbolicLink(exe.toPath());
648648
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();
649+
exe = FileUtil.resolveFile(exePath.toFile());
653650
logger.debug("cellranger resolved symlink target: " + exe.getPath());
654651
}
655652
catch (IOException e)

0 commit comments

Comments
 (0)