Skip to content
Snippets Groups Projects
Commit 695ef882 authored by Sander van der Zeeuw's avatar Sander van der Zeeuw
Browse files

added bcftools_singlesample

parent f525d0f4
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@ trait ShivaVariantcallingTrait extends SummaryQScript with SampleLibraryTag with
}
/** Will generate all available variantcallers */
protected def callersList: List[Variantcaller] = List(new Freebayes, new RawVcf, new Bcftools)
protected def callersList: List[Variantcaller] = List(new Freebayes, new RawVcf, new Bcftools, new BcftoolsSingleSample)
/** General trait for a variantcaller mode */
trait Variantcaller {
......@@ -182,6 +182,50 @@ trait ShivaVariantcallingTrait extends SummaryQScript with SampleLibraryTag with
}
}
/** default mode of bcftools */
class BcftoolsSingleSample extends Variantcaller {
val name = "bcftools_singlesample"
protected val defaultPrio = 8
/** Final output file of this mode */
def outputFile = new File(outputDir, namePrefix + ".bcftools_singlesample.vcf.gz")
def addJobs() {
val sampleVcfs = for (inputBam <- inputBams) yield {
val mp = new SamtoolsMpileup(qscript)
mp.input :+= inputBam
mp.u = true
//TODO: proper piping should be implemented
mp.reference = referenceFasta()
val bt = new BcftoolsCall(qscript)
bt.O = "z"
bt.v = true
bt.c = true
val sampleVcf = new File(outputDir, inputBam.getName + ".vcf.gz")
//TODO: add proper class with piping support, see also issue #114
add(new CommandLineFunction {
@Input
var input = inputBam
@Output
var output = sampleVcf
def commandLine: String = mp.cmdPipe + " | " + bt.cmdPipeInput + " > " + output + " && tabix -p vcf " + output
})
sampleVcf
}
val cv = new CombineVariants(qscript)
cv.inputFiles = sampleVcfs
cv.outputFile = outputFile
cv.setKey = "null"
add(cv)
}
}
/** Makes a vcf file from a mpileup without statistics */
class RawVcf extends Variantcaller {
val name = "raw"
......
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