Skip to content

Commit ed83b68

Browse files
committed
Change quotes in awk expression
1 parent c7d9707 commit ed83b68

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

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

0 commit comments

Comments
 (0)