Description
Indels-2.0 is somewhat buggy at present. On several tests it simply fails. For example the test data from #2277.
bcftools: bam2bcf_iaux.c:468: iaux_align_read: Assertion `qry_off1<=qry_off2' failed.
Often this is due to the use of asserts to validate assumptions. Those validations are perhaps fine, but assert is not. Either it needs the asserts replacing by return codes to indicate errors, so that the alignment is rejected, or it needs canning as functionality. Basically it looks to be part-way through development and more of a prototype than a usable piece of code, although it is labelled as experimental to reflect that.
If I recall it was an attempt to rewrite my old PR (#1679), but in doing so introduced bugs and lost most of the improvements in calling accuracy. Ultimately I improved on that PR and it got merged as --indels-cns
, so we may need to decide what to do with the --indels-2.0
functionality.
Right now though I think it's just confusing for the users having multiple experimental options.