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.

muse.wdl 700B

4 jaren geleden
12345678910111213141516171819202122232425262728293031
  1. task muse {
  2. File ref_dir
  3. String fasta
  4. File dbsnp_dir
  5. String dbsnp
  6. File normal_bam
  7. File normal_bam_index
  8. File tumor_bam
  9. File tumor_bam_index
  10. String sample
  11. String muse_docker
  12. String cluster_config
  13. String disk_size
  14. command <<<
  15. ./MuSE call –O ${sample} –f ${ref_dir}/${fasta} ${tumor_bam} ${normal_bam}
  16. ./MuSE sump -I ${sample}.MuSE.txt -E –O ${sample}.MuSE.TN.vcf –D
  17. >>>
  18. runtime {
  19. docker:muse_docker
  20. cluster: cluster_config
  21. systemDisk: "cloud_ssd 40"
  22. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  23. }
  24. output {
  25. File muse_vcf = "${sample}.MuSE.TN.vcf"
  26. }
  27. }