Skip to content

Commit c3377a9

Browse files
committed
Use full filepath
1 parent f91af88 commit c3377a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/api-src/org/labkey/api/singlecell/pipeline/AbstractSingleCellPipelineStep.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,9 +478,9 @@ protected Collection<File> getAdditionalDockerInputs(SequenceOutputHandler.JobCo
478478
return Collections.emptySet();
479479
}
480480

481-
protected String printInputFile(SeuratObjectWrapper so)
481+
private String printInputFile(SeuratObjectWrapper so)
482482
{
483-
return "'" + so.getFile().getName() + "'";
483+
return "'" + so.getFile().getPath() + "'";
484484
}
485485

486486
protected Chunk createFinalChunk() throws PipelineJobException

0 commit comments

Comments
 (0)