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.

29 lines
480B

  1. task Mapping {
  2. File ref_dir
  3. File fastq_1
  4. File fastq_2
  5. String sample
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. set -o pipefail
  11. set -e
  12. /src/Bismark-0.20.1/bismark --bowtie2 -p 16 --multicore 2 --bam ${ref_dir} -1 ${fastq_1} -2 ${fastq_2}
  13. >>>
  14. runtime {
  15. docker:docker
  16. cluster: cluster_config
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  19. }
  20. output {
  21. File bam = "${sample}.bam"
  22. }
  23. }