Skip to content

Commit

Permalink
require values for the various filtering-related Boolean inputs in al…
Browse files Browse the repository at this point in the history
…ign_and_count

require values for the various filtering-related Boolean inputs in align_and_count, since the default values guarantee they'll be set
  • Loading branch information
tomkinsc committed Mar 9, 2024
1 parent 7eaec98 commit 78f8fa0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pipes/WDL/tasks/tasks_reports.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -392,10 +392,10 @@ task align_and_count {
File ref_db
Int topNHits = 3
Boolean? filter_bam_to_proper_primary_mapped_reads = false
Boolean? do_not_require_proper_mapped_pairs_when_filtering = false
Boolean? keep_singletons_when_filtering = false
Boolean? keep_duplicates_when_filtering = false
Boolean filter_bam_to_proper_primary_mapped_reads = false
Boolean do_not_require_proper_mapped_pairs_when_filtering = false
Boolean keep_singletons_when_filtering = false
Boolean keep_duplicates_when_filtering = false
Int? machine_mem_gb
String docker = "quay.io/broadinstitute/viral-core:2.3.0"
Expand Down

0 comments on commit 78f8fa0

Please sign in to comment.