Skip to content

Commit

Permalink
Merge pull request #8 from lifebit-ai/add-vcftools-multiqc
Browse files Browse the repository at this point in the history
Prevent multiqc error for vcf qual
  • Loading branch information
PhilPalmer committed Feb 14, 2019
2 parents b481e0d + dda784c commit 990bfc4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,8 @@ process vcftools{
vcftools --vcf $vcf --TsTv-summary
vcftools --vcf $vcf --TsTv-by-count
vcftools --vcf $vcf --TsTv-by-qual
# remove rows containing 'inf' which breaks multiqc report
sed -i '/inf/d' out.TsTv.qual
"""
}

Expand Down

0 comments on commit 990bfc4

Please sign in to comment.