Skip to content
Snippets Groups Projects
Commit c1e610af authored by Wai Yi Leung's avatar Wai Yi Leung
Browse files

Adding compression to all VCF outputs from the SV-callers

parent fbd1bc81
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,8 @@ ...@@ -15,7 +15,8 @@
*/ */
package nl.lumc.sasc.biopet.pipelines.shiva.svcallers package nl.lumc.sasc.biopet.pipelines.shiva.svcallers
import nl.lumc.sasc.biopet.extensions.breakdancer.{ BreakdancerVCF, BreakdancerCaller, BreakdancerConfig } import nl.lumc.sasc.biopet.extensions.breakdancer.{BreakdancerCaller, BreakdancerConfig, BreakdancerVCF}
import nl.lumc.sasc.biopet.extensions.picard.SortVcf
import nl.lumc.sasc.biopet.utils.config.Configurable import nl.lumc.sasc.biopet.utils.config.Configurable
/** Script for sv caler Breakdancer */ /** Script for sv caler Breakdancer */
...@@ -32,10 +33,15 @@ class Breakdancer(val root: Configurable) extends SvCaller { ...@@ -32,10 +33,15 @@ class Breakdancer(val root: Configurable) extends SvCaller {
val bdcfg = BreakdancerConfig(this, bamFile, new File(breakdancerSampleDir, sample + ".breakdancer.cfg")) val bdcfg = BreakdancerConfig(this, bamFile, new File(breakdancerSampleDir, sample + ".breakdancer.cfg"))
val breakdancer = BreakdancerCaller(this, bdcfg.output, new File(breakdancerSampleDir, sample + ".breakdancer.tsv")) val breakdancer = BreakdancerCaller(this, bdcfg.output, new File(breakdancerSampleDir, sample + ".breakdancer.tsv"))
val bdvcf = BreakdancerVCF(this, breakdancer.output, new File(breakdancerSampleDir, sample + ".breakdancer.vcf"), val bdvcf = BreakdancerVCF(this, breakdancer.output, new File(breakdancerSampleDir, sample + ".breakdancer.vcf"),
sample = sample) sample = sample + "_bd")
add(bdcfg, breakdancer, bdvcf)
addVCF(sample, bdvcf.output) val compresssedVCF = new SortVcf(this)
compresssedVCF.input = bdvcf.output
compresssedVCF.output = new File(breakdancerSampleDir, s"${sample}.breakdancer.vcf.gz")
add(bdcfg, breakdancer, bdvcf, compresssedVCF)
addVCF(sample, compresssedVCF.output)
} }
} }
} }
...@@ -33,13 +33,13 @@ class Clever(val root: Configurable) extends SvCaller { ...@@ -33,13 +33,13 @@ class Clever(val root: Configurable) extends SvCaller {
val cleverVCF = new CleverFixVCF(this) val cleverVCF = new CleverFixVCF(this)
cleverVCF.input = clever.outputvcf cleverVCF.input = clever.outputvcf
cleverVCF.output = new File(cleverDir, s".${sample}.clever.vcf") cleverVCF.output = new File(cleverDir, s".${sample}.clever.vcf")
cleverVCF.sampleName = sample cleverVCF.sampleName = sample + "_cl"
cleverVCF.isIntermediate = true cleverVCF.isIntermediate = true
add(cleverVCF) add(cleverVCF)
val sortvcf = new SortVcf(this) val sortvcf = new SortVcf(this)
sortvcf.input = cleverVCF.output sortvcf.input = cleverVCF.output
sortvcf.output = new File(cleverDir, s"${sample}.clever.vcf") sortvcf.output = new File(cleverDir, s"${sample}.clever.vcf.gz")
add(sortvcf) add(sortvcf)
addVCF(sample, sortvcf.output) addVCF(sample, sortvcf.output)
......
...@@ -17,6 +17,7 @@ package nl.lumc.sasc.biopet.pipelines.shiva.svcallers ...@@ -17,6 +17,7 @@ package nl.lumc.sasc.biopet.pipelines.shiva.svcallers
import nl.lumc.sasc.biopet.extensions.delly.DellyCaller import nl.lumc.sasc.biopet.extensions.delly.DellyCaller
import nl.lumc.sasc.biopet.extensions.gatk.CatVariants import nl.lumc.sasc.biopet.extensions.gatk.CatVariants
import nl.lumc.sasc.biopet.extensions.picard.SortVcf
import nl.lumc.sasc.biopet.utils.config.Configurable import nl.lumc.sasc.biopet.utils.config.Configurable
/** Script for sv caller delly */ /** Script for sv caller delly */
...@@ -41,7 +42,13 @@ class Delly(val root: Configurable) extends SvCaller { ...@@ -41,7 +42,13 @@ class Delly(val root: Configurable) extends SvCaller {
delly.analysistype = "DEL" delly.analysistype = "DEL"
delly.outputvcf = new File(dellyDir, sample + ".delly.del.vcf") delly.outputvcf = new File(dellyDir, sample + ".delly.del.vcf")
add(delly) add(delly)
catVariants.variant :+= delly.outputvcf
val compresssedVCF = new SortVcf(this)
compresssedVCF.input = delly.outputvcf
compresssedVCF.output = new File(dellyDir, s"${sample}.delly.del.vcf.gz")
add(compresssedVCF)
catVariants.variant :+= compresssedVCF.output
} }
if (dup) { if (dup) {
val delly = new DellyCaller(this) val delly = new DellyCaller(this)
...@@ -49,7 +56,13 @@ class Delly(val root: Configurable) extends SvCaller { ...@@ -49,7 +56,13 @@ class Delly(val root: Configurable) extends SvCaller {
delly.analysistype = "DUP" delly.analysistype = "DUP"
delly.outputvcf = new File(dellyDir, sample + ".delly.dup.vcf") delly.outputvcf = new File(dellyDir, sample + ".delly.dup.vcf")
add(delly) add(delly)
catVariants.variant :+= delly.outputvcf
val compresssedVCF = new SortVcf(this)
compresssedVCF.input = delly.outputvcf
compresssedVCF.output = new File(dellyDir, s"${sample}.delly.dup.vcf.gz")
add(compresssedVCF)
catVariants.variant :+= compresssedVCF.output
} }
if (inv) { if (inv) {
val delly = new DellyCaller(this) val delly = new DellyCaller(this)
...@@ -57,18 +70,30 @@ class Delly(val root: Configurable) extends SvCaller { ...@@ -57,18 +70,30 @@ class Delly(val root: Configurable) extends SvCaller {
delly.analysistype = "INV" delly.analysistype = "INV"
delly.outputvcf = new File(dellyDir, sample + ".delly.inv.vcf") delly.outputvcf = new File(dellyDir, sample + ".delly.inv.vcf")
add(delly) add(delly)
catVariants.variant :+= delly.outputvcf
val compresssedVCF = new SortVcf(this)
compresssedVCF.input = delly.outputvcf
compresssedVCF.output = new File(dellyDir, s"${sample}.delly.inv.vcf.gz")
add(compresssedVCF)
catVariants.variant :+= compresssedVCF.output
} }
if (tra) { if (tra) {
val delly = new DellyCaller(this) val delly = new DellyCaller(this)
delly.input = bamFile delly.input = bamFile
delly.analysistype = "TRA" delly.analysistype = "TRA"
delly.outputvcf = new File(dellyDir, sample + ".delly.tra.vcf") delly.outputvcf = new File(dellyDir, sample + ".delly.tra.vcf")
catVariants.variant :+= delly.outputvcf
add(delly) add(delly)
val compresssedVCF = new SortVcf(this)
compresssedVCF.input = delly.outputvcf
compresssedVCF.output = new File(dellyDir, s"${sample}.delly.tra.vcf.gz")
add(compresssedVCF)
catVariants.variant :+= compresssedVCF.output
} }
require(catVariants.variant.nonEmpty, "Must atleast 1 SV-type be selected for Delly") require(catVariants.variant.nonEmpty, "At least 1 SV-type should be selected for Delly")
add(catVariants) add(catVariants)
addVCF(sample, catVariants.outputFile) addVCF(sample, catVariants.outputFile)
......
...@@ -18,6 +18,7 @@ package nl.lumc.sasc.biopet.pipelines.shiva.svcallers ...@@ -18,6 +18,7 @@ package nl.lumc.sasc.biopet.pipelines.shiva.svcallers
import java.text.SimpleDateFormat import java.text.SimpleDateFormat
import java.util.Calendar import java.util.Calendar
import nl.lumc.sasc.biopet.extensions.picard.SortVcf
import nl.lumc.sasc.biopet.extensions.pindel._ import nl.lumc.sasc.biopet.extensions.pindel._
import nl.lumc.sasc.biopet.utils.config.Configurable import nl.lumc.sasc.biopet.utils.config.Configurable
...@@ -39,7 +40,7 @@ class Pindel(val root: Configurable) extends SvCaller { ...@@ -39,7 +40,7 @@ class Pindel(val root: Configurable) extends SvCaller {
val configFile: File = new File(pindelDir, sample + ".pindel.cfg") val configFile: File = new File(pindelDir, sample + ".pindel.cfg")
val cfg = new PindelConfig(this) val cfg = new PindelConfig(this)
cfg.input = bamFile cfg.input = bamFile
cfg.sampleName = sample cfg.sampleName = sample + "_pd" // pindel suffix
cfg.output = configFile cfg.output = configFile
add(cfg) add(cfg)
...@@ -58,7 +59,12 @@ class Pindel(val root: Configurable) extends SvCaller { ...@@ -58,7 +59,12 @@ class Pindel(val root: Configurable) extends SvCaller {
pindelVcf.outputVCF = new File(pindelDir, s"${sample}.pindel.vcf") pindelVcf.outputVCF = new File(pindelDir, s"${sample}.pindel.vcf")
add(pindelVcf) add(pindelVcf)
addVCF(sample, pindelVcf.outputVCF) val compresssedVCF = new SortVcf(this)
compresssedVCF.input = pindelVcf.outputVCF
compresssedVCF.output = new File(pindelDir, s"${sample}.pindel.vcf.gz")
add(compresssedVCF)
addVCF(sample, compresssedVCF.output)
} }
} }
......
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