Skip to content

Commit

Permalink
add fix to snp pileup table for facets
Browse files Browse the repository at this point in the history
  • Loading branch information
stevekm committed Jul 18, 2019
1 parent 8c8aec3 commit fc44576
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4097,9 +4097,12 @@ process snp_pileup {
-P100 \
-r25,0 \
"${snp_vcf}" \
"${output_cnvsnp}" \
tmp.gz \
"${normalBam}" \
"${tumorBam}"
# need to remove 'chr' from the table to resolve bugs in facets
zcat tmp.gz | sed 's|chr||g' | gzip - -c > "${output_cnvsnp}"
"""
}

Expand Down

0 comments on commit fc44576

Please sign in to comment.