Add private alternate base getter for Insertion

master
parent 1b7c7f86d7
commit ccbe6eed62
Signed by: millironx
GPG Key ID: 139C07724802BC5D

@ -492,6 +492,14 @@ function _refbases(i::Insertion, reference::S, pos::UInt) where S <: BioSequence
return S([reference[pos]])
end
function _altbases(i::Insertion, reference::S, pos::UInt) where S <: BioSequence
if pos == 1
return S([i.seq..., reference[pos]])
else
return S([reference[pos], i.seq...])
end
end
export Insertion,
Deletion,
Substitution,

Loading…
Cancel
Save