Skip to content

Commit 852a1d8

Browse files
committed
Nimble plot uses aligner output
1 parent 8d23167 commit 852a1d8

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
@@ -505,7 +505,7 @@ private Map<NimbleGenome, File> doAlignment(List<NimbleGenome> genomes, List<Fil
505505

506506
resultMap.put(genome, reportResultsGz);
507507

508-
if (SequencePipelineService.get().hasMinLineCount(reportResultsGz, 2))
508+
if (SequencePipelineService.get().hasMinLineCount(alignResultsGz, 2))
509509
{
510510
// Also run nimble plot. Always re-run since this is fast:
511511
List<String> plotArgs = new ArrayList<>();
@@ -515,7 +515,7 @@ private Map<NimbleGenome, File> doAlignment(List<NimbleGenome> genomes, List<Fil
515515

516516
plotArgs.add("plot");
517517
plotArgs.add("--input_file");
518-
plotArgs.add("/work/" + reportResultsGz.getName());
518+
plotArgs.add("/work/" + alignResultsGz.getName());
519519

520520
File plotResultsHtml = getReportHtmlFileFromResults(reportResultsGz);
521521
if (reportResultsGz.exists())

0 commit comments

Comments
 (0)