Skip to content

Commit

Permalink
update nucleotide length range (UInt8 to UInt16)
Browse files Browse the repository at this point in the history
  • Loading branch information
kchu25 committed Jan 18, 2024
1 parent 4af7352 commit cca3542
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/inference/_0_const.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const float_type_retrieval = Float16

const stored_code_component_t =
NamedTuple{(:position, :fil, :seq, :mag), Tuple{UInt8, UInt8, UInt32, float_type_retrieval}}
NamedTuple{(:position, :fil, :seq, :mag), Tuple{UInt16, UInt16, UInt32, float_type_retrieval}}

const composition_key_type =
NamedTuple{(:f1,:f2,:f3,:d12,:d13,:len), Tuple{Int8, Int8, Int8, UInt8, UInt8, UInt8}}
NamedTuple{(:f1,:f2,:f3,:d12,:d13,:len), Tuple{Int8, Int8, Int8, UInt16, UInt16, UInt16}}

const value_type =
NamedTuple{(:seq_num, :pos, :comp), Tuple{UInt32, UInt16, Bool}}
Expand Down

0 comments on commit cca3542

Please sign in to comment.