Variant calling using Varscan somatic, processSomatic and somaticFilter based on BAM file.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
12345678910111213141516171819202122232425
  1. task vcf2maf {
  2. String sample
  3. File multianno_txt
  4. String maf_name = basename(multianno_txt,".hg38_multianno.txt")
  5. String docker
  6. String cluster_config
  7. String disk_size
  8. command <<<
  9. vcf2maf ${multianno_txt} ${maf_name}.maf
  10. >>>
  11. runtime {
  12. docker: docker
  13. cluster: cluster_config
  14. systemDisk: "cloud_ssd 40"
  15. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  16. }
  17. output {
  18. File maf = "${maf_name}.maf"
  19. }
  20. }