MCPcopy Create free account
hub / github.com/SingleRust/SingleRust / StatisticsContainer

Class StatisticsContainer

src/memory/statistics/structs/mod.rs:1–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1pub struct StatisticsContainer<I, T>
2where
3 I: num_traits::PrimInt + num_traits::Unsigned + num_traits::Zero + std::ops::AddAssign,
4 T: num_traits::Float + num_traits::NumCast + std::ops::AddAssign + std::iter::Sum + From<I>,
5{
6 pub num_per_gene: Vec<I>,
7 pub expr_per_gene: Vec<T>,
8 pub num_per_cell: Vec<I>,
9 pub expr_per_cell: Vec<T>,
10 pub variance_per_gene: Vec<T>,
11 pub variance_per_cell: Vec<T>,
12 pub std_dev_per_gene: Vec<T>,
13 pub std_dev_per_cell: Vec<T>,
14}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected