Skip to content

Commit 8d8bc15

Browse files
committed
Reduce PBSV debug logging
1 parent 81d1b4e commit 8d8bc15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/PbsvJointCallingHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ private File runPbsvCall(JobContext ctx, List<File> inputs, ReferenceGenome geno
223223
for (File s : inputs)
224224
{
225225
String ret = StringUtils.trimToNull(runner.executeWithOutput(Arrays.asList("/bin/bash", "-c", tabix.getExe().getPath() + " -l '" + s.getPath() + "' | grep -e '" + contig + "' | wc -l")));
226-
ctx.getLogger().debug(s.getName() + ": [" + ret + "]");
227226
if ("0".equals(ret))
228227
{
229228
ctx.getLogger().info("Sample is missing contig: " + contig + ", skipping: " + s.getPath());
@@ -245,6 +244,7 @@ private File runPbsvCall(JobContext ctx, List<File> inputs, ReferenceGenome geno
245244
return null;
246245
}
247246

247+
ctx.getLogger().info("Using " + samplesToUse.size() + " of " + inputs.size() + " svsig files");
248248
samplesToUse.forEach(f -> {
249249
args.add(f.getPath());
250250
});

0 commit comments

Comments
 (0)