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.

пре 6 година
12345678910111213141516171819202122232425
  1. task CNV {
  2. String TumorBam
  3. String NormalBam
  4. String TumorSampleID
  5. String bed_file
  6. String workDir
  7. String outputDir
  8. String docker
  9. String disk_size
  10. String cluster_config
  11. command <<<
  12. Rscript cn.mops.R --Tumor=${TumorBam} --Normal=${NormalBam} --TumorID==${TumorSampleID} --bed_file=${bed_file} --workDir=${workDir} --outputDir=${outputDir}
  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 sorted_bam = "${TumorSampleID}.cn.mops.res.txt"
  22. }
  23. }