deepbiop_fa/
encode.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use ahash::HashMap;
use ndarray::{Array2, Array3};

pub type Element = i32;
pub type Matrix = Array2<Element>;
pub type Tensor = Array3<Element>;
pub type Kmer2IdTable = HashMap<Vec<u8>, Element>;
pub type Id2KmerTable = HashMap<Element, Vec<u8>>;

mod option;
mod parquet;
mod record;
mod traits;

pub use option::*;
pub use parquet::*;
pub use record::*;
pub use traits::*;