Skip to content
Snippets Groups Projects
Commit 1b9ceb90 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

fix bug on mpileup

parent e995516a
No related branches found
No related tags found
No related merge requests found
......@@ -146,8 +146,7 @@ class GatkVariantcalling(val root: Configurable) extends QScript with BiopetQScr
add(vcfFilter)
scriptOutput.rawFilterVcfFile = vcfFilter.outputVcf
} else if (rawVcfInput != null) scriptOutput.rawFilterVcfFile = rawVcfInput
if (scriptOutput.rawFilterVcfFile == null) throw new IllegalStateException("Files can't be empty")
mergBuffer += ("9.raw" -> scriptOutput.rawFilterVcfFile)
if (scriptOutput.rawFilterVcfFile != null) mergBuffer += ("9.raw" -> scriptOutput.rawFilterVcfFile)
}
// Allele mode
......
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