Skip to content

Commit 5651473

Browse files
committed
cli/commands/normalize: Add trimmed mean of M-values option
1 parent 9ef05ea commit 5651473

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

atlas-cli/src/cli/normalize.rs

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ pub enum Method {
99
Fpkm,
1010
/// Median of ratios.
1111
MedianOfRatios,
12+
/// Trimmed mean of M-values (TMM).
13+
Tmm,
1214
/// Transcripts per million (TPM) mapped reads
1315
Tpm,
1416
}

atlas-cli/src/commands/normalize.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::{
66
};
77

88
use atlas_core::{
9-
counts::normalization::{fpkm, median_of_ratios, tpm},
9+
counts::normalization::{fpkm, median_of_ratios, tmm, tpm},
1010
features::{self, Feature, ReadFeaturesError},
1111
StrandSpecification,
1212
};
@@ -73,6 +73,7 @@ pub fn normalize(args: normalize::Args) -> Result<(), NormalizeError> {
7373
Method::MedianOfRatios => {
7474
median_of_ratios::normalize_vec(sample_count, names.len(), counts)?
7575
}
76+
Method::Tmm => tmm::normalize_vec(sample_count, names.len(), counts)?,
7677
Method::Tpm => {
7778
let lengths = calculate_feature_lengths(&features, &names)?;
7879

atlas-core/src/counts/normalization/tmm.rs

+18-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,27 @@
88
//! [edgeR]: https://bioconductor.org/packages/release/bioc/html/edgeR.html
99
//! [10.1186/gb-2010-11-3-r25]: https://doi.org/10.1186/gb-2010-11-3-r25
1010
11-
use std::collections::HashSet;
11+
use std::{collections::HashSet, io};
1212

13-
use ndarray::{Array2, ArrayView1, ArrayView2, ArrayViewMut2};
13+
use ndarray::{Array2, ArrayView1, ArrayView2, ArrayViewMut2, Axis};
1414
use tracing::info;
1515

16+
pub fn normalize_vec(
17+
sample_count: usize,
18+
feature_count: usize,
19+
data: Vec<u32>,
20+
) -> io::Result<Vec<Vec<f64>>> {
21+
let matrix = Array2::from_shape_vec((sample_count, feature_count), data)
22+
.map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
23+
24+
let normalized_matrix = normalize(matrix);
25+
26+
Ok(normalized_matrix
27+
.axis_iter(Axis(0))
28+
.map(|row| row.to_vec())
29+
.collect())
30+
}
31+
1632
pub fn normalize(data: Array2<u32>) -> Array2<f64> {
1733
let mut data = data.mapv(f64::from);
1834
let mut normalized_data = data.clone();

0 commit comments

Comments
 (0)