mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-23 10:19:56 +00:00
1a3c986152
- Update to use GenomicFeatures v2. - BioAlignments v2. - BioSequences v2. - Indexes v0.1.
13 lines
118 B
Julia
13 lines
118 B
Julia
module XAM
|
|
|
|
export
|
|
SAM,
|
|
BAM
|
|
|
|
include("sam/sam.jl")
|
|
include("bam/bam.jl")
|
|
|
|
using .SAM
|
|
using .BAM
|
|
|
|
end # module
|