mirror of
https://github.com/MillironX/SequenceVariation.jl.git
synced 2024-11-22 13:29:56 +00:00
Add private alternate base getter for Deletion
This commit is contained in:
parent
bc073eaf20
commit
145e9e5f88
1 changed files with 8 additions and 0 deletions
|
@ -480,6 +480,14 @@ function _refbases(d::Deletion, reference::S, pos::UInt) where S <: BioSequence
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function _altbases(d::Deletion, reference::S, pos::UInt) where S <: BioSequence
|
||||||
|
if pos == 1
|
||||||
|
return S([reference[pos+1]])
|
||||||
|
else
|
||||||
|
return S([reference[pos-1]])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
export Insertion,
|
export Insertion,
|
||||||
Deletion,
|
Deletion,
|
||||||
Substitution,
|
Substitution,
|
||||||
|
|
Loading…
Reference in a new issue