Skip to content

Commit f1c6a0f

Browse files
committed
add a marker line to tune
1 parent 309a536 commit f1c6a0f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

wdl/pipelines/ONT/Preprocessing/ONTFlowcellWGSuBAM.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ workflow ONTFlowcellWGSuBAM {
131131

132132
###################################################################################
133133
# prep work
134-
String workflow_name = "ONTFlowcellWGSuBAM"
134+
String workflow_name = "Realign"
135135
String outdir = sub(gcs_out_root_dir, "/$", "") + "/~{workflow_name}/~{flowcell}"
136136
String outdir_aln = outdir + '/alignments'
137137
String outdir_metrics = outdir + '/metrics'

wdl/tasks/Alignment/AlignReads.wdl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ task Minimap2 {
5050
Int desired_cpus = (if('LOCAL'==disk_type) then 32 else 24) * length(reads)
5151
Int cpus = if max_cpus < desired_cpus then max_cpus else desired_cpus # WDL 1.0 doesn't have a max(,)....
5252
Int mem = cpus * (if('LOCAL'==disk_type || longer_ont_read_hint) then 6 else 5)
53+
# if mimimap2 OoM, tune the line above
5354
5455
Int mm2_threads = cpus - 2
5556

0 commit comments

Comments
 (0)