Skip to content

Commit bcb26d0

Browse files
committed
Fix syntax
1 parent 8d321f5 commit bcb26d0

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
@@ -248,7 +248,7 @@ private File runPbsvCall(JobContext ctx, List<File> inputs, ReferenceGenome geno
248248

249249
for (File s : inputs)
250250
{
251-
String ret = StringUtils.trimToNull(runner.executeWithOutput(Arrays.asList("/bin/bash", "-c", tabix.getExe().getPath() + " -l '" + s.getPath() + "' | awk ' { $1 == \"" + contig + "\" } ' | wc -l")));
251+
String ret = StringUtils.trimToNull(runner.executeWithOutput(Arrays.asList("/bin/bash", "-c", tabix.getExe().getPath() + " -l '" + s.getPath() + "' | awk ' $1 == \"" + contig + "\" ' | wc -l")));
252252
if ("0".equals(ret))
253253
{
254254
ctx.getLogger().info("Sample is missing contig: " + contig + ", skipping: " + s.getPath());

0 commit comments

Comments
 (0)