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

changes to get rid of reference calls

parent 59923a55
No related branches found
No related tags found
No related merge requests found
...@@ -60,14 +60,11 @@ class VarscanCnsSingleSample(val root: Configurable) extends Variantcaller { ...@@ -60,14 +60,11 @@ class VarscanCnsSingleSample(val root: Configurable) extends Variantcaller {
sampleVcf sampleVcf
} }
if (sampleVcfs.size > 1) { val cv = new CombineVariants(this)
val cv = new CombineVariants(this) cv.inputFiles = sampleVcfs
cv.inputFiles = sampleVcfs cv.outputFile = outputFile
cv.outputFile = outputFile cv.setKey = "null"
cv.setKey = "null" cv.excludeNonVariants = true
cv.excludeNonVariants = true add(cv)
add(cv)
} else add(Ln.apply(this, sampleVcfs.head, outputFile))
add(Tabix(this, outputFile))
} }
} }
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