Skip to content

Commit 1a64e10

Browse files
committed
Improve logging
1 parent 38f8435 commit 1a64e10

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/ProcessVariantsHandler.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ public static File processVCF(File input, Integer libraryId, JobContext ctx, Res
422422
for (PipelineStepCtx<VariantProcessingStep> stepCtx : providers)
423423
{
424424
ctx.getLogger().info("Starting to run: " + stepCtx.getProvider().getLabel());
425+
ctx.getLogger().debug("VCF: " + currentVCF);
425426
ctx.getJob().setStatus(PipelineJob.TaskStatus.running, "Running: " + stepCtx.getProvider().getLabel());
426427
stepIdx++;
427428

@@ -476,6 +477,7 @@ public static File processVCF(File input, Integer libraryId, JobContext ctx, Res
476477
{
477478
currentVCF = output.getVCF();
478479

480+
ctx.getJob().getLogger().info("output VCF: " + currentVCF.getPath());
479481
ctx.getJob().getLogger().info("total variants: " + getVCFLineCount(currentVCF, ctx.getJob().getLogger(), false, true));
480482
ctx.getJob().getLogger().info("passing variants: " + getVCFLineCount(currentVCF, ctx.getJob().getLogger(), true, false));
481483
ctx.getJob().getLogger().debug("index exists: " + (new File(currentVCF.getPath() + ".tbi")).exists());

0 commit comments

Comments
 (0)