Ver código fonte

vcf name

master
LUYAO REN 5 anos atrás
pai
commit
815ea08fa6
2 arquivos alterados com 6 adições e 4 exclusões
  1. +4
    -2
      README.md
  2. +2
    -2
      tasks/strelka.wdl

+ 4
- 2
README.md Ver arquivo



You don't need to tune the parameters of strelka. It bases on [trained models](<https://github.com/Illumina/strelka/blob/v2.9.x/docs/userGuide/trainingGermlineEmpiricalScore.md>), you may train new models to improve performance. You don't need to tune the parameters of strelka. It bases on [trained models](<https://github.com/Illumina/strelka/blob/v2.9.x/docs/userGuide/trainingGermlineEmpiricalScore.md>), you may train new models to improve performance.


Why?






``` ```


##### Per sample run time


4h30min


##### Reference ##### Reference


1. Strelka User Guide <https://github.com/Illumina/strelka/blob/v2.9.x/docs/userGuide/README.md> 1. Strelka User Guide <https://github.com/Illumina/strelka/blob/v2.9.x/docs/userGuide/README.md>
2.
2. Strelka paper <https://www.nature.com/articles/s41592-018-0051-x>

+ 2
- 2
tasks/strelka.wdl Ver arquivo



File ref_dir File ref_dir
File fasta File fasta

File Dedup_bam File Dedup_bam
File Dedup_bam_index File Dedup_bam_index
String sample String sample
nt=$(nproc) nt=$(nproc)
/strelka-2.9.10.centos6_x86_64/bin/configureStrelkaGermlineWorkflow.py --bam ${Dedup_bam} --referenceFasta ${ref_dir}/${fasta} /strelka-2.9.10.centos6_x86_64/bin/configureStrelkaGermlineWorkflow.py --bam ${Dedup_bam} --referenceFasta ${ref_dir}/${fasta}
StrelkaGermlineWorkflow/runWorkflow.py -m local -j $nt StrelkaGermlineWorkflow/runWorkflow.py -m local -j $nt
mv StrelkaGermlineWorkflow/results/variants/variants.vcf.gz StrelkaGermlineWorkflow/results/variants/${sample}_strelka2.vcf.gz
>>> >>>


runtime { runtime {
dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/" dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
} }
output { output {
Array[File] output_files = glob("StrelkaGermlineWorkflow/results/variants/*")
File strelka_vcf = "StrelkaGermlineWorkflow/results/variants/${sample}_strelka2.vcf.gz"
} }
} }

Carregando…
Cancelar
Salvar