Variant type | variant_definition example | ..seq_reference.. ..seq_variant.. | Note |
Substitution | .45A>C | ..acctActtgc.. ..acctCcttgc.. | substitutions involving two or more consecutive nucleotides are described as deletion/insertion (delins) variants Our program also accepts c.45AC>GT. The program checks if the reference sequence is correct and then rewrites in the correct HGVS format (c.45_46delinsGT) |
Deletion | .45del (only one nucleotide) .45_47del (more nucleotide) | ..acctACTgcta.. ..acct...gcta.. | Our program also accepts .45_47delACT (In this case checks if the reference sequence is correct) |
Duplication | .55dup (only one nucleotide) .55_57dup (more nucleotide) | ..tgcaCTTacga.. ..tgcaCTTCTTacga.. | The program accepts, for example, also 55_56insCTT. If the three previous bases (53_55), in the reference sequence, are CTT, then it rewrites the variant in the correct HGVS format (.55_57dup) |
Insertion | .45_46insACT | 45| |46 ..cgta...cgaa.. ..cgtaACTcgaa.. | Insert ACT from 45 to 46 nucleotide position |
Inversion | .66_68inv | ..cgtaATTctgg.. ..cgtaTTActgg.. | In this case, the variation would correspond to .66_68delinsTTA. The program accepts this form, check the reference sequence, and then rewrites it into the correct HGVS format (.66_68inv) |
Deletion-Insertion | 60delinsACT .60_62delinsGG | ..cgtaACTgcca.. ..cgtaGG.gcca.. | Our program also accepts .60_62delACTinsGG (In this case checks if the reference sequence is correct) |