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.

CallableLoci.wdl 400B

4 년 전
1234567891011121314151617181920212223242526272829
  1. task CallableLoci {
  2. File bed
  3. String sample
  4. String docker
  5. String disk_size
  6. String cluster_config
  7. command <<<
  8. cat ${bed} | grep CALLABLE > ${sample}.CALLABLE.bed
  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 callable_bed = "${sample}.CALLABLE.bed"
  18. }
  19. }