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.

37 Zeilen
733B

  1. task Deepvariant {
  2. File ref_dir
  3. String fasta
  4. File Dedup_bam
  5. File Dedup_bam_index
  6. String sample
  7. String model_type
  8. String DPdocker
  9. String cluster_config
  10. String disk_size
  11. command <<<
  12. set -o pipefail
  13. set -e
  14. nt=$(nproc)
  15. python /opt/deepvariant/bin/run_deepvariant.py --model_type=${model_type} \
  16. --ref=${ref_dir}/${fasta} \
  17. --reads=${Dedup_bam} \
  18. --num_shards=$nt \
  19. --call_variants_extra_args="use_openvino=true" \
  20. --output_vcf=${sample}_DP.vcf.gz
  21. >>>
  22. runtime {
  23. docker:DPdocker
  24. cluster: cluster_config
  25. systemDisk: "cloud_ssd 40"
  26. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  27. }
  28. output {
  29. File vcf = "${sample}_DP.vcf.gz"
  30. File vcf_index = "${sample}_DP.vcf.gz.tbi"
  31. }
  32. }