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.

VCFinfo.wdl 316B

5 yıl önce
1234567891011121314151617181920212223
  1. task VCFinfo {
  2. File merged_info
  3. String sample
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. >>>
  9. runtime {
  10. docker:docker
  11. cluster: cluster_config
  12. systemDisk: "cloud_ssd 40"
  13. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  14. }
  15. output {
  16. File extracted_info = ""
  17. }
  18. }