From 0dd37f4ec87682fbf8982bd2c5c0571e052e9e18 Mon Sep 17 00:00:00 2001 From: Kenta Sato Date: Thu, 15 Jun 2017 20:55:39 +0900 Subject: [PATCH] replace type aliases with constants --- src/indexes/bgzfindex.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/indexes/bgzfindex.jl b/src/indexes/bgzfindex.jl index 49e6d684..ec0cca9f 100644 --- a/src/indexes/bgzfindex.jl +++ b/src/indexes/bgzfindex.jl @@ -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