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.

32 lines
476B

  1. task bedVote {
  2. File merged_bed
  3. String sample
  4. String docker
  5. String disk_size
  6. String cluster_config
  7. command <<<
  8. python /opt/callable_bed_voting.py -bed ${merged_bed} -prefix ${sample}
  9. >>>
  10. runtime {
  11. docker:docker
  12. cluster:cluster_config
  13. systemDisk: "cloud_ssd 40"
  14. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  15. }
  16. output {
  17. File consensus_bed = "${sample}.27consensus.bed"
  18. File filtered_bed = "${sample}.filtered.bed"
  19. }
  20. }