Skip to content

Commit

Permalink
Explicitly pass default yak count and hifiasm params.
Browse files Browse the repository at this point in the history
  • Loading branch information
williamrowell committed Sep 29, 2023
1 parent 2dc2760 commit ebe6afe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflows/de_novo_assembly_trio/de_novo_assembly_trio.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ workflow de_novo_assembly_trio {
# memory for 24 threads is 48GB with bloom filter (<=50x coverage) and 65GB without bloom filter (<=30x coverage)
Boolean low_depth = if ((size(samtools_fasta_father.reads_fasta, "GB") < 90) && (size(samtools_fasta_mother.reads_fasta, "GB") < 90)) then true else false
String yak_params = if (low_depth) then "" else "-b37"
String yak_params = if (low_depth) then "-b0" else "-b37"
Int yak_mem_gb = if (low_depth) then 70 else 50
String hifiasm_extra_params = if (low_depth) then "-c1 -d1" else ""
String hifiasm_extra_params = if (low_depth) then "-c1 -d1" else "-c2 -d5"
call yak_count as yak_count_father {
input:
Expand Down

0 comments on commit ebe6afe

Please sign in to comment.