diff --git a/public/gwas-test/src/main/scala/nl/lumc/sasc/biopet/pipelines/gwastest/GwasTest.scala b/public/gwas-test/src/main/scala/nl/lumc/sasc/biopet/pipelines/gwastest/GwasTest.scala index 9035928e825e79dd9a3ffa98cd24470d9e9fe5b6..15669af9b13307958a76276930eb9f533e721eae 100644 --- a/public/gwas-test/src/main/scala/nl/lumc/sasc/biopet/pipelines/gwastest/GwasTest.scala +++ b/public/gwas-test/src/main/scala/nl/lumc/sasc/biopet/pipelines/gwastest/GwasTest.scala @@ -4,10 +4,10 @@ import java.io.File import java.util import htsjdk.samtools.reference.FastaSequenceFile -import nl.lumc.sasc.biopet.core.{ BiopetQScript, PipelineCommand, Reference } +import nl.lumc.sasc.biopet.core.{BiopetQScript, PipelineCommand, Reference} import nl.lumc.sasc.biopet.extensions.Snptest -import nl.lumc.sasc.biopet.extensions.gatk.{ CatVariants, SelectVariants } -import nl.lumc.sasc.biopet.extensions.tools.GensToVcf +import nl.lumc.sasc.biopet.extensions.gatk.{CatVariants, SelectVariants} +import nl.lumc.sasc.biopet.extensions.tools.{GensToVcf, SnptestToVcf} import nl.lumc.sasc.biopet.pipelines.gwastest.impute.ImputeOutput import nl.lumc.sasc.biopet.utils.Logging import nl.lumc.sasc.biopet.utils.config.Configurable @@ -114,8 +114,19 @@ class GwasTest(val root: Configurable) extends QScript with BiopetQScript with R snptest.inputSampleFiles :+= phenotypeFile snptest.outputFile = Some(new File(regionDir, s"${region.chr}-${region.start + 1}-${region.end}.snptest")) add(snptest) - region -> snptest + + val snptestToVcf = new SnptestToVcf(this) + snptestToVcf.inputInfo = snptest.outputFile.get + snptestToVcf.outputVcf = new File(regionDir, s"${region.chr}-${region.start + 1}-${region.end}.snptest.vcf.gz") + add(snptestToVcf) + + region -> snptestToVcf.outputVcf } + + val cv = new CatVariants(this) + cv.inputFiles = snpTests.map(_._2).toList + cv.outputFile = new File(outputDir, "snptest" + File.separator + "snptest.vcf.gz") + add(cv) } }