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

fix on missing AD field

parent 50b908db
No related branches found
No related tags found
No related merge requests found
......@@ -268,7 +268,7 @@ object BastyGenerateFasta extends ToolCommand {
val genotype = vcfRecord.getGenotype(cmdArgs.sampleName)
if (genotype == null) return fillAllele("", maxSize)
val AD = genotype.getAD
val AD = if (genotype.hasAD) genotype.getAD else Array.fill(vcfRecord.getAlleles.size())(cmdArgs.minAD)
if (AD == null) return fillAllele("", maxSize)
val maxADid = AD.zipWithIndex.maxBy(_._1)._2
if (AD(maxADid) < cmdArgs.minAD) return fillAllele("", maxSize)
......
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