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.

34 lines
836B

  1. task extract_tables {
  2. File quality_yield_summary
  3. File wgs_metrics_summary
  4. File aln_metrics_summary
  5. File is_metrics_summary
  6. File hs_metrics_summary
  7. File hap
  8. File fastqc
  9. File fastqscreen
  10. String project
  11. String docker
  12. String cluster_config
  13. String disk_size
  14. command <<<
  15. python /opt/extract_tables.py -quality ${quality_yield_summary} -depth ${wgs_metrics_summary} -aln ${aln_metrics_summary} -is ${is_metrics_summary} -fastqc ${fastqc} -fastqscreen ${fastqscreen} -hap ${hap} -project ${project} -hs ${hs_metrics_summary}
  16. >>>
  17. runtime {
  18. docker:docker
  19. cluster:cluster_config
  20. systemDisk:"cloud_ssd 40"
  21. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  22. }
  23. output {
  24. File pre_alignment = "pre_alignment.txt"
  25. File post_alignment = "post_alignment.txt"
  26. File variant_calling = "variants.calling.qc.txt"
  27. }
  28. }