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.

25 line
535B

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