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.

24 lines
497B

  1. task CNV {
  2. String TumorBam
  3. String NormalBam
  4. String TumorSampleID
  5. String bed_file
  6. String docker
  7. String disk_size
  8. String cluster_config
  9. command <<<
  10. cn_mops --Tumor=${TumorBam} --Normal=${NormalBam} --TumorID==${TumorSampleID} --bed_file=${bed_file} --workDir=.
  11. >>>
  12. runtime {
  13. docker: docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File cn_mops = "${TumorSampleID}.cn.mops.res.txt"
  20. }
  21. }