Skip to content

Commit

Permalink
make declared vars with defaults non-optional
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkinsc committed May 21, 2019
1 parent aeeaf1e commit 619e118
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipes/WDL/workflows/tasks/tasks_metagenomics.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ task krakenuniq {
Array[File] reads_unmapped_bam
File krakenuniq_db_tar_lz4 # krakenuniq/{database.kdb,taxonomy}
File krona_taxonomy_db_tgz # taxonomy/taxonomy.tab
String? aggregate_taxon_heading_space_separated = "Viruses" # The taxonomic heading to analyze. More than one can be specified.
String? aggregate_taxlevel_focus = "species" # species,genus,family,order,class,phylum,kingdom,superkingdom
String aggregate_taxon_heading_space_separated = "Viruses" # The taxonomic heading to analyze. More than one can be specified.
String aggregate_taxlevel_focus = "species" # species,genus,family,order,class,phylum,kingdom,superkingdom
Int? aggregate_top_N_hits = 5 # only include the top N hits from a given sample in the aggregte report
String aggregate_taxon_heading = sub(aggregate_taxon_heading_space_separated, " ", "_") # replace spaces with underscores for use in filename
Expand Down

0 comments on commit 619e118

Please sign in to comment.