Skip to content

Commit cbbc329

Browse files
committed
cli/commands/quantify/filter: Fix nonunique filter for segmented reads
1 parent ebbb728 commit cbbc329

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ impl Filter {
6060
return Ok(Some(Event::Skip));
6161
}
6262

63-
if is_unique_record(r1)? && is_unique_record(r2)? {
63+
if !is_unique_record(r1)? || !is_unique_record(r2)? {
6464
return Ok(Some(Event::Nonunique));
6565
}
6666

0 commit comments

Comments
 (0)