Skip to content

Commit c515cb4

Browse files
committed
Add logging
1 parent d100720 commit c515cb4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/preprocessing/TagPcrSummaryStep.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,21 @@ public Output performAnalysisPerSampleRemote(Readset rs, File inputBam, Referenc
165165
{
166166
primerTable = new File(outputDir, basename + ".primers.txt");
167167
}
168+
else
169+
{
170+
getPipelineCtx().getLogger().info("will not design primers")
171+
}
168172

169173
File genbank = null;
170174
if (outputGenbank)
171175
{
172176
genbank = new File(outputDir, basename + ".sites.gb");
173177
}
178+
else
179+
{
180+
getPipelineCtx().getLogger().info("will not output genbank file")
181+
}
182+
174183
File metrics = getMetricsFile(inputBam, outputDir);
175184

176185
List<String> extraArgs = new ArrayList<>(getClientCommandArgs());

0 commit comments

Comments
 (0)