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.

6 年之前
6 年之前
5 年之前
6 年之前
5 年之前
6 年之前
123456789101112131415161718192021222324252627282930
  1. task strelka {
  2. File ref_dir
  3. File fasta
  4. File Dedup_bam
  5. File Dedup_bam_index
  6. String sample
  7. String docker
  8. String cluster_config
  9. String disk_size
  10. command <<<
  11. set -o pipefail
  12. set -e
  13. nt=$(nproc)
  14. /strelka-2.9.10.centos6_x86_64/bin/configureStrelkaGermlineWorkflow.py --bam ${Dedup_bam} --referenceFasta ${ref_dir}/${fasta}
  15. StrelkaGermlineWorkflow/runWorkflow.py -m local -j $nt
  16. mv StrelkaGermlineWorkflow/results/variants/variants.vcf.gz StrelkaGermlineWorkflow/results/variants/${sample}_strelka2.vcf.gz
  17. >>>
  18. runtime {
  19. docker:docker
  20. cluster: cluster_config
  21. systemDisk: "cloud_ssd 40"
  22. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  23. }
  24. output {
  25. File strelka_vcf = "StrelkaGermlineWorkflow/results/variants/${sample}_strelka2.vcf.gz"
  26. }
  27. }