Skip to content

Commit

Permalink
updated the related wdl and deleted the copy of the wdl
Browse files Browse the repository at this point in the history
  • Loading branch information
shadizaheri committed Nov 20, 2023
1 parent 592d93a commit 3533181
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 696 deletions.
41 changes: 0 additions & 41 deletions wdl/Module07XfBatchEffect.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -472,47 +472,6 @@ task MakeCorrelationMatrices {
}
}
# Generate list of all pairs of batches to be compared
task MakeBatchPairsList {
input{
File batches_list
String prefix
String sv_pipeline_docker
RuntimeAttr? runtime_attr_override
}
RuntimeAttr default_attr = object {
cpu_cores: 1,
mem_gb: 4,
disk_gb: 10,
boot_disk_gb: 10,
preemptible_tries: 3,
max_retries: 1
}
RuntimeAttr runtime_attr = select_first([runtime_attr_override, default_attr])
command <<<
set -euo pipefail
/opt/sv-pipeline/scripts/downstream_analysis_and_filtering/make_batch_pairs_list.R \
~{batches_list} \
"~{prefix}.nonredundant_batch_pairs.txt"
>>>
output {
File batch_pairs_list = "~{prefix}.nonredundant_batch_pairs.txt"
}

runtime {
cpu: select_first([runtime_attr.cpu_cores, default_attr.cpu_cores])
memory: select_first([runtime_attr.mem_gb, default_attr.mem_gb]) + " GiB"
disks: "local-disk " + select_first([runtime_attr.disk_gb, default_attr.disk_gb]) + " HDD"
bootDiskSizeGb: select_first([runtime_attr.boot_disk_gb, default_attr.boot_disk_gb])
docker: sv_pipeline_docker
preemptible: select_first([runtime_attr.preemptible_tries, default_attr.preemptible_tries])
maxRetries: select_first([runtime_attr.max_retries, default_attr.max_retries])
}
}
# Merge lists of batch effect checks and count total number of times each variant failed
task MergeVariantFailureLists {
input{
Expand Down
Loading

0 comments on commit 3533181

Please sign in to comment.