Skip to content
Snippets Groups Projects
Commit f26c4004 authored by bow's avatar bow
Browse files

Merge branch 'fix-varscan_threads' into 'develop'

Reduce threads for varscan

Reduce over scheduling of threads for varscan

See merge request !446
parents 9ed130e8 ca53b210
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,9 @@ class VarscanCnsSingleSample(val root: Configurable) extends Variantcaller {
val varscan = new VarscanMpileup2cns(this)
varscan.vcfSampleList = Some(sampleFile)
add(mpileup | new FixMpileup(this) | varscan | new Bgzip(this) > sampleVcf)
val variantcallingJob = mpileup | new FixMpileup(this) | varscan | new Bgzip(this) > sampleVcf
variantcallingJob.threadsCorrection = -2
add(variantcallingJob)
add(Tabix(this, sampleVcf))
sampleVcf
......
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