Skip to content
Snippets Groups Projects
Commit 08f3651d authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

- Added nt and scattercount options to ApplyRecalibration

parent ca2905e5
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,8 @@ class Gatk(private var globalConfig: Config) extends QScript {
snpApplyRecalibration.out = swapExt(genotypeGVCFs.out,".vcf",".snp.recal.vcf")
snpApplyRecalibration.ts_filter_level = 99.5
snpApplyRecalibration.mode = org.broadinstitute.sting.gatk.walkers.variantrecalibration.VariantRecalibratorArgumentCollection.Mode.SNP
snpApplyRecalibration.nt = 3
snpApplyRecalibration.scatterCount = scatterCount
add(snpApplyRecalibration)
//indel recal
......@@ -101,6 +103,8 @@ class Gatk(private var globalConfig: Config) extends QScript {
indelApplyRecalibration.out = swapExt(genotypeGVCFs.out,".vcf",".indel.recal.vcf")
indelApplyRecalibration.ts_filter_level = 99.0
indelApplyRecalibration.mode = org.broadinstitute.sting.gatk.walkers.variantrecalibration.VariantRecalibratorArgumentCollection.Mode.INDEL
indelApplyRecalibration.nt = 3
indelApplyRecalibration.scatterCount = scatterCount
add(indelApplyRecalibration)
// merge snp and indels
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment