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.

преди 4 години
123456789101112131415161718192021222324252627282930
  1. task annovar {
  2. File muse_vcf
  3. File database
  4. String sample
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. set -o pipefail
  10. set -e
  11. nt=$(nproc)
  12. /installations/annovar/table_annovar.pl ${muse_vcf} ${database} -buildver hg38 -out ${sample}.MuSE -remove -protocol refGene,ensGene,knownGene,cytoBand,genomicSuperDups,ljb26_all,dbnsfp35c,intervar_20180118,cosmic70,exac03,gnomad211_exome,clinvar_20200316 -operation g,g,g,r,r,f,f,f,f,f,f,f -nastring . -vcfinput -thread $nt
  13. >>>
  14. runtime {
  15. docker: docker
  16. cluster: cluster_config
  17. systemDisk: "cloud_ssd 40"
  18. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  19. }
  20. output {
  21. File avinput_muse = "${sample}.MuSE.avinput"
  22. File multianno_muse_txt = "${sample}.MuSE.hg38_multianno.txt"
  23. File multianno_muse = "${sample}.MuSE.hg38_multianno.vcf"
  24. }
  25. }