室间质评
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.

24 lines
434B

  1. task vcfstat {
  2. File rtg_vcf
  3. File rtg_vcf_index
  4. String docker
  5. String cluster_config
  6. String disk_size
  7. command <<<
  8. set -o pipefail
  9. set -e
  10. /opt/rtg-tools/dist/rtg-tools-3.10.1-4d58ead/rtg vcfstats ${rtg_vcf} > onestats.txt
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster:cluster_config
  15. systemDisk:"cloud_ssd 40"
  16. dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File vcfnumber="onestats.txt"
  20. }
  21. }