mirror of
https://github.com/MillironX/SequenceVariation.jl.git
synced 2024-11-24 06:19:54 +00:00
Update ranges to allow end position insertions
This commit is contained in:
parent
5be4dce200
commit
f9058c5cb3
1 changed files with 2 additions and 2 deletions
|
@ -246,7 +246,7 @@ function is_valid(v::Variant)
|
||||||
# for next op. However, we cannot have two insertions at the same position, because
|
# for next op. However, we cannot have two insertions at the same position, because
|
||||||
# then the order of them is ambiguous
|
# then the order of them is ambiguous
|
||||||
elseif op isa Insertion
|
elseif op isa Insertion
|
||||||
pos in (first(valid_positions)-1+last_was_insert:last(valid_positions)) || return false
|
pos in (first(valid_positions)-1+last_was_insert:last(valid_positions)+1) || return false
|
||||||
last_was_insert = true
|
last_was_insert = true
|
||||||
# Deletions obviously invalidate the reference bases that are deleted.
|
# Deletions obviously invalidate the reference bases that are deleted.
|
||||||
elseif op isa Deletion
|
elseif op isa Deletion
|
||||||
|
@ -399,7 +399,7 @@ function is_valid(v::Variation)
|
||||||
if op isa Substitution
|
if op isa Substitution
|
||||||
return pos in eachindex(v.ref)
|
return pos in eachindex(v.ref)
|
||||||
elseif op isa Insertion
|
elseif op isa Insertion
|
||||||
return pos in 0:lastindex(v.ref)
|
return pos in 0:lastindex(v.ref)+1
|
||||||
elseif op isa Deletion
|
elseif op isa Deletion
|
||||||
return pos in 1:(lastindex(v.ref)-length(op) + 1)
|
return pos in 1:(lastindex(v.ref)-length(op) + 1)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue