您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

33 行
520B

  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. }