Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

extract_tables_vcf.wdl 399B

vor 2 Jahren
1234567891011121314151617181920212223
  1. task extract_tables_vcf {
  2. File hap
  3. String project
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. python /opt/extract_tables.py -hap ${hap} -project ${project}
  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 variant_calling = "variants.calling.qc.txt"
  18. }
  19. }