You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is about 0 based and 1 based interval schemes.
conventional annotation of nucleaotide sequences uses a 1 based, closed interval scheme
but popular programming languages today use a 0 based, left-closed, right-open interval scheme
Solution: distinguish the 0 based and 1 based interval scheme by using a different variable
name for 1 based starts.
Example:
sequence = "aattccgga"
gb_start = 2
start = gb_start - 1 # this is optional, of course.
end = 5
The text was updated successfully, but these errors were encountered:
The issue is about 0 based and 1 based interval schemes.
Solution: distinguish the 0 based and 1 based interval scheme by using a different variable
name for 1 based starts.
Example:
sequence = "aattccgga"
gb_start = 2
start = gb_start - 1 # this is optional, of course.
end = 5
The text was updated successfully, but these errors were encountered: