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.

collapseBed.wdl 520B

5 jaren geleden
1234567891011121314151617181920212223242526272829303132
  1. task collapseBed {
  2. File bed
  3. String sample
  4. String docker
  5. String disk_size
  6. String cluster_config
  7. command <<<
  8. cat ${bed} | cut -f1-3 > ${sample}.temp.bed
  9. /opt/ccdg/bedtools-2.27.1/bin/bedtools merge -i ${sample}.temp.bed > ${sample}.27.homo_ref.consensus.bed
  10. >>>
  11. runtime {
  12. docker:docker
  13. cluster:cluster_config
  14. systemDisk: "cloud_ssd 40"
  15. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  16. }
  17. output {
  18. File merged_homo_ref_bed = "${sample}.27.homo_ref.consensus.bed"
  19. }
  20. }