Skip to content
Snippets Groups Projects
Commit ab5fac83 authored by Laros's avatar Laros
Browse files

Added a check that prevents the insertion of a range.


git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@321 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent f9bc0235
No related branches found
No related tags found
No related merge requests found
......@@ -1243,10 +1243,19 @@ def __rv(MUU, RawVar, GenRecordInstance, parts, O, transcript) :
GenRecordInstance, O)
if RawVar.MutationType == "inv" :
checkInversion(start_g, end_g, MUU, GenRecordInstance, O)
# TODO implement this feature.
if RawVar.MutationType in ["delins", "ins"] :
if not Arg1 :
O.addMessage(__file__, 4, "ENOTIMPLEMENTED",
"Insertion of a range is not implemented yet.")
return
#if
#if
if RawVar.MutationType == "ins" :
checkInsertion(start_g, end_g, Arg1, MUU, GenRecordInstance, O)
# DelIns.
if RawVar.MutationType == "delins" :
if not Arg1 :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment