Skip to content

Commit 7693d3d

Browse files
committed
cli/commands/quantify/filter: Mark record as unique if alignment hit count is <= 1
A unique record should have an alignment hit count (`NH`) of 1, but htseq-count seems to also allow it be 0 or negative.
1 parent 4da4ff0 commit 7693d3d

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

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

+11-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ fn is_unique_record(record: &bam::Record) -> io::Result<bool> {
9090
};
9191

9292
match value.as_int() {
93-
Some(n) => Ok(n == 1), // TODO: `n` == 0.
93+
Some(n) => {
94+
// A unique record should have an alignment hit count (`NH`) of 1, but htseq-count
95+
// 0.12.3 seems to also allow this be 0 or negative.
96+
Ok(n <= 1)
97+
}
9498
None => Err(io::Error::new(
9599
io::ErrorKind::InvalidData,
96100
format!(
@@ -135,6 +139,12 @@ mod tests {
135139
Ok(record)
136140
}
137141

142+
let record = build_record(Value::from(-1))?;
143+
assert!(is_unique_record(&record)?);
144+
145+
let record = build_record(Value::from(0))?;
146+
assert!(is_unique_record(&record)?);
147+
138148
let record = build_record(Value::from(1))?;
139149
assert!(is_unique_record(&record)?);
140150

0 commit comments

Comments
 (0)