Skip to content

Commit

Permalink
Fix flipped percent unmapped issue
Browse files Browse the repository at this point in the history
This was already fixed in 5.0.1 for myco_raw
  • Loading branch information
aofarrel committed Aug 25, 2023
1 parent afbfbd2 commit e966304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion myco_sra.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ workflow myco {
allInputIndexes = [vcfs_and_bams.left[1]]
}

if(covstats.percentUnmapped > covstatsQC_max_percent_unmapped) {
if(covstats.percentUnmapped < covstatsQC_max_percent_unmapped) {
if(covstats.coverage > covstatsQC_minimum_coverage) {

# make diff files
Expand Down

0 comments on commit e966304

Please sign in to comment.