Skip to content

Commit 825648d

Browse files
committed
Smarter resume with nimble
1 parent beef45c commit 825648d

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
@@ -538,7 +538,7 @@ public static File runNimbleReport(File alignResultsGz, int genomeId, PipelineSt
538538
reportArgs.add("-o");
539539
reportArgs.add(reportResultsGz.getPath());
540540

541-
runUsingDocker(reportArgs, output, null, ctx);
541+
runUsingDocker(reportArgs, output, "nimble.report." + genomeId, ctx);
542542

543543
if (!reportResultsGz.exists())
544544
{
@@ -566,7 +566,7 @@ public static File runNimbleReport(File alignResultsGz, int genomeId, PipelineSt
566566
plotArgs.add("--output_file");
567567
plotArgs.add(plotResultsHtml.getPath());
568568

569-
runUsingDocker(plotArgs, output, null, ctx);
569+
runUsingDocker(plotArgs, output, "nimble.plot." + genomeId, ctx);
570570

571571
if (!plotResultsHtml.exists())
572572
{

0 commit comments

Comments
 (0)