Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

extract_info.wdl 556B

il y a 5 ans
12345678910111213141516171819202122232425
  1. task extract_info {
  2. File vcf
  3. String vcf_name = basename(vcf,".vcf")
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. python /opt/extract_vcf_information.py -i ${vcf} -o ${vcf_name}.txt
  9. cat ${vcf_name}.txt | cut -f23,25,27,22,12,21,3,18,4,8,11,15 > ${vcf_name}.essential.txt
  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 vcf_info = "${vcf_name}.txt"
  19. File vcf_needed_info = "${vcf_name}.essential.txt"
  20. }
  21. }