Skip to content

Commit 5a6dd9a

Browse files
committed
Bugfix to nimble report
1 parent 982b0d6 commit 5a6dd9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ else if (!alignResultsGz.exists())
422422

423423
reportArgs.add("report");
424424
reportArgs.add("-i");
425-
reportArgs.add("/work/" + alignResultsGz.getPath());
425+
reportArgs.add("/work/" + alignResultsGz.getName());
426426

427427
File reportResultsGz = new File(getPipelineCtx().getWorkingDirectory(), "reportResults." + genome.genomeId + ".txt");
428428
if (reportResultsGz.exists())
@@ -431,7 +431,7 @@ else if (!alignResultsGz.exists())
431431
}
432432

433433
reportArgs.add("-o");
434-
reportArgs.add("/work/" + reportResultsGz.getPath());
434+
reportArgs.add("/work/" + reportResultsGz.getName());
435435

436436
runUsingDocker(reportArgs, output, null);
437437

0 commit comments

Comments
 (0)