File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
singlecell/src/org/labkey/singlecell/run Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 5252import java .io .File ;
5353import java .io .IOException ;
5454import java .nio .file .Files ;
55+ import java .nio .file .Path ;
5556import java .util .ArrayList ;
5657import java .util .Arrays ;
5758import java .util .Collection ;
@@ -643,8 +644,13 @@ public File getInclusionListFile(Logger logger) throws PipelineJobException
643644 {
644645 try
645646 {
646- exe = Files .readSymbolicLink (exe .toPath ()).resolve (exe .getParentFile ().toPath ()).toFile ();
647- logger .debug ("cellranger symlink target: " + exe .getPath ());
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 ();
653+ logger .debug ("cellranger resolved symlink target: " + exe .getPath ());
648654 }
649655 catch (IOException e )
650656 {
You can’t perform that action at this time.
0 commit comments