deepbiop_fa/
encode.rs

1use ahash::HashMap;
2use ndarray::{Array2, Array3};
3
4pub type Element = i32;
5pub type Matrix = Array2<Element>;
6pub type Tensor = Array3<Element>;
7pub type Kmer2IdTable = HashMap<Vec<u8>, Element>;
8pub type Id2KmerTable = HashMap<Element, Vec<u8>>;
9
10pub mod option;
11pub mod parquet;
12pub mod record;
13pub mod traits;
14
15pub use option::*;
16pub use parquet::*;
17pub use record::*;
18pub use traits::*;