Skip to content

Commit 7826a93

Browse files
committed
cli/commands/quantify: Filter unmapped records
1 parent 8360bb2 commit 7826a93

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

atlas-cli/src/commands/quantify.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
mod count;
2+
mod filter;
23
mod match_intervals;
34
mod specification;
45

@@ -18,7 +19,7 @@ use noodles::{bam, core::Position, gff::record::Strand, sam};
1819
use thiserror::Error;
1920
use tracing::info;
2021

21-
use self::{count::count_single_records, specification::LibraryLayout};
22+
use self::{count::count_single_records, filter::Filter, specification::LibraryLayout};
2223
use crate::cli::quantify;
2324

2425
type Features = HashMap<String, Vec<Feature>>;
@@ -72,11 +73,13 @@ pub fn quantify(args: quantify::Args) -> Result<(), QuantifyError> {
7273
"detected library layout"
7374
);
7475

76+
let filter = Filter;
77+
7578
let mut reader = bam::io::reader::Builder.build_from_path(src)?;
7679
reader.read_header()?;
7780

7881
let _ctx = match library_layout {
79-
LibraryLayout::Single => count_single_records(&interval_trees, reader)?,
82+
LibraryLayout::Single => count_single_records(&interval_trees, &filter, reader)?,
8083
LibraryLayout::Multiple => todo!(),
8184
};
8285

atlas-cli/src/commands/quantify/count.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ use std::{
66
use atlas_core::collections::IntervalTree;
77
use noodles::{bam, core::Position};
88

9-
use super::{match_intervals::MatchIntervals, Entry, IntervalTrees};
9+
use super::{match_intervals::MatchIntervals, Entry, Filter, IntervalTrees};
1010

1111
#[expect(dead_code)]
12-
enum Event<'f> {
12+
pub(super) enum Event<'f> {
1313
Hit(&'f str),
1414
Miss,
1515
Ambiguous,
@@ -50,6 +50,7 @@ impl<'f> Context<'f> {
5050

5151
pub(super) fn count_single_records<'f, R>(
5252
interval_trees: &IntervalTrees<'f>,
53+
filter: &'f Filter,
5354
mut reader: bam::io::Reader<R>,
5455
) -> io::Result<Context<'f>>
5556
where
@@ -59,7 +60,7 @@ where
5960
let mut record = bam::Record::default();
6061

6162
while reader.read_record(&mut record)? != 0 {
62-
let event = count_single_record(interval_trees, &record)?;
63+
let event = count_single_record(interval_trees, filter, &record)?;
6364
ctx.add_event(event);
6465
}
6566

@@ -68,8 +69,13 @@ where
6869

6970
fn count_single_record<'f>(
7071
interval_trees: &IntervalTrees<'f>,
72+
filter: &'f Filter,
7173
record: &bam::Record,
7274
) -> io::Result<Event<'f>> {
75+
if let Some(event) = filter.filter(record)? {
76+
return Ok(event);
77+
}
78+
7379
let reference_sequence_id = record
7480
.reference_sequence_id()
7581
.transpose()?
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
use std::io;
2+
3+
use noodles::bam;
4+
5+
use super::count::Event;
6+
7+
pub(super) struct Filter;
8+
9+
impl Filter {
10+
pub(super) fn filter(&self, record: &bam::Record) -> io::Result<Option<Event<'_>>> {
11+
let flags = record.flags();
12+
13+
if flags.is_unmapped() {
14+
return Ok(Some(Event::Unmapped));
15+
}
16+
17+
Ok(None)
18+
}
19+
}

0 commit comments

Comments
 (0)