We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0460dbf commit 4a64d40Copy full SHA for 4a64d40
SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/PindelAnalysis.java
@@ -390,10 +390,11 @@ else if ("D".equals(type))
390
type = "S";
391
alt = alt + pindelAllele;
392
393
- if (alt.length() != ref.length())
394
- {
395
- throw new IllegalArgumentException("Unexpected pindel allele at " + basePriorToStart + ": " + ref + " / " + alt + " / " + pindelAllele);
396
- }
+ //NOTE: allele length can legitimately differ
+ //if (alt.length() != ref.length())
+ //{
+ // throw new IllegalArgumentException("Unexpected pindel allele at " + basePriorToStart + ": " + ref + " / " + alt + " / " + pindelAllele);
397
+ //}
398
}
399
400
0 commit comments