mirror of
https://github.com/MillironX/SequenceVariation.jl.git
synced 2024-11-22 05:19:55 +00:00
Add public alternate base getter for Variation
This commit is contained in:
parent
cab314ec0b
commit
b8e44c7b81
1 changed files with 6 additions and 1 deletions
|
@ -504,6 +504,10 @@ function refbases(v::Variation)
|
|||
return _refbases(mutation(v), reference(v), leftposition(v))
|
||||
end
|
||||
|
||||
function altbases(v::Variation)
|
||||
return _altbases(mutation(v), reference(v), leftposition(v))
|
||||
end
|
||||
|
||||
export Insertion,
|
||||
Deletion,
|
||||
Substitution,
|
||||
|
@ -512,6 +516,7 @@ export Insertion,
|
|||
reference,
|
||||
mutation,
|
||||
variations,
|
||||
refbases
|
||||
refbases,
|
||||
altbases
|
||||
|
||||
end # module
|
||||
|
|
Loading…
Reference in a new issue