You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- task Call_meth {
-
- File ref_dir
-
- File Dedup_bam
- String sample
- String docker
- String cluster_config
- String disk_size
-
- command <<<
- set -o pipefail
- set -e
- /src/Bismark-0.20.1/bismark_methylation_extractor -p --no_overlap --comprehensive --report --bedGraph --genome_folder ${ref_dir} ${Dedup_bam}
- >>>
-
- runtime {
- docker:docker
- cluster: cluster_config
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
- }
-
- output {
- File bedGraph = "${sample}_R1_bismark_bt2_pe.deduplicated.bedGraph.gz"
- File cov = "${sample}_R1_bismark_bt2_pe.bismark.deduplicated.cov.gz"
- File splitting_report = "${sample}_R1_bismark_bt2_pe_splitting_report.deduplicated.txt"
- File CHG_context = "CHG_context_${sample}_R1_bismark_bt2_pe.deduplicated.txt"
- File CHH_context = "CHH_context_${sample}_R1_bismark_bt2_pe.deduplicated.txt"
- File CpG_context = "CpG_context_${sample}_R1_bismark_bt2_pe.deduplicated.txt"
- File Mbias = "${sample}_R1_bismark_bt2_pe.deduplicated.M-bias.txt"
- }
- }
|