Skip to content

Commit

Permalink
replace type aliases with constants
Browse files Browse the repository at this point in the history
  • Loading branch information
bicycle1885 committed Jun 15, 2017
1 parent a80a647 commit 0dd37f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/indexes/bgzfindex.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
# License is MIT: https://github.com/BioJulia/Bio.jl/blob/master/LICENSE.md

# binning index
typealias BinIndex Dict{UInt32,Vector{Chunk}}
const BinIndex = Dict{UInt32,Vector{Chunk}}

# linear index
typealias LinearIndex Vector{VirtualOffset}
const LinearIndex = Vector{VirtualOffset}

# Metadata providing a summary of the number of mappend/unmapped reads.
type PseudoBin
Expand Down

0 comments on commit 0dd37f4

Please sign in to comment.