()
| 65 | |
| 66 | impl Default for HVGParams { |
| 67 | fn default() -> Self { |
| 68 | HVGParams { |
| 69 | min_mean: 0.0125, |
| 70 | max_mean: 3.0, |
| 71 | min_dispersion: 0.5, |
| 72 | max_dispersion: f64::INFINITY, |
| 73 | n_bins: 20, |
| 74 | n_top_genes: None, |
| 75 | flavor: FlavorType::Seurat, |
| 76 | span: 0.3, |
| 77 | batch_key: None, |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | pub fn standardize_log(x: f64, mu: f64, sigma: f64) -> f64 { |
nothing calls this directly
no outgoing calls
no test coverage detected