mirror of
https://github.com/MillironX/SequenceVariation.jl.git
synced 2024-11-21 21:16:05 +00:00
Move exports to top of file
Per Blue style, exports should be one per line, and appear immediately after using statements. Reorganize module file to comply
This commit is contained in:
parent
9f9d0899bd
commit
25c63906dc
1 changed files with 11 additions and 11 deletions
|
@ -25,6 +25,17 @@ using BioGenerics: BioGenerics, leftposition, rightposition
|
|||
using BioSequences: BioSequences, BioSequence, NucleotideSeq, LongSequence, isgap
|
||||
using BioSymbols: BioSymbol
|
||||
|
||||
export Deletion
|
||||
export Insertion
|
||||
export Substitution
|
||||
export Variant
|
||||
export Variation
|
||||
export altbases
|
||||
export mutation
|
||||
export refbases
|
||||
export reference
|
||||
export variations
|
||||
|
||||
const BA = BioAlignments
|
||||
const BS = BioSequences
|
||||
|
||||
|
@ -35,15 +46,4 @@ include("Edit.jl")
|
|||
include("Variant.jl")
|
||||
include("Variation.jl")
|
||||
|
||||
export Insertion,
|
||||
Deletion,
|
||||
Substitution,
|
||||
Variant,
|
||||
Variation,
|
||||
reference,
|
||||
mutation,
|
||||
variations,
|
||||
refbases,
|
||||
altbases
|
||||
|
||||
end # module
|
||||
|
|
Loading…
Reference in a new issue