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.

28 lines
462B

  1. task BAMReadCount {
  2. String sample_id
  3. File ref_dir
  4. String fa
  5. File fai
  6. File bed
  7. File bam
  8. File bai
  9. String docker
  10. String cluster_config
  11. String disk_size
  12. command <<<
  13. bam-readcount -w 0 -q1 -f ${fa} -l ${bed} ${bam} > ${sample_id}.readcount
  14. >>>
  15. runtime {
  16. docker: docker
  17. cluster: cluster_config
  18. systemDisk: "cloud_ssd 40"
  19. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  20. }
  21. output {
  22. File BAMReadCount = "${sample_id}.readcount"
  23. }
  24. }