Fix for variant summary -- now treats all 50 bp deletions or insertions as CNVs
This commit is contained in:
parent
3060a4a15e
commit
6bf18899df
|
|
@ -184,7 +184,7 @@ public class VariantSummary extends VariantEvaluator implements StandardEval {
|
||||||
return Type.SNP;
|
return Type.SNP;
|
||||||
case INDEL:
|
case INDEL:
|
||||||
for ( int l : vc.getIndelLengths() )
|
for ( int l : vc.getIndelLengths() )
|
||||||
if ( l > MAX_INDEL_LENGTH )
|
if ( Math.abs(l) > MAX_INDEL_LENGTH )
|
||||||
return Type.CNV;
|
return Type.CNV;
|
||||||
return Type.INDEL;
|
return Type.INDEL;
|
||||||
case SYMBOLIC:
|
case SYMBOLIC:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue