Skip to content

Commit 4a64d40

Browse files
committed
Remove check
1 parent 0460dbf commit 4a64d40

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/PindelAnalysis.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -390,10 +390,11 @@ else if ("D".equals(type))
390390
type = "S";
391391
alt = alt + pindelAllele;
392392

393-
if (alt.length() != ref.length())
394-
{
395-
throw new IllegalArgumentException("Unexpected pindel allele at " + basePriorToStart + ": " + ref + " / " + alt + " / " + pindelAllele);
396-
}
393+
//NOTE: allele length can legitimately differ
394+
//if (alt.length() != ref.length())
395+
//{
396+
// throw new IllegalArgumentException("Unexpected pindel allele at " + basePriorToStart + ": " + ref + " / " + alt + " / " + pindelAllele);
397+
//}
397398
}
398399
}
399400

0 commit comments

Comments
 (0)