File tree 1 file changed +11
-1
lines changed
atlas-cli/src/commands/quantify
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,11 @@ fn is_unique_record(record: &bam::Record) -> io::Result<bool> {
90
90
} ;
91
91
92
92
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
+ }
94
98
None => Err ( io:: Error :: new (
95
99
io:: ErrorKind :: InvalidData ,
96
100
format ! (
@@ -135,6 +139,12 @@ mod tests {
135
139
Ok ( record)
136
140
}
137
141
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
+
138
148
let record = build_record ( Value :: from ( 1 ) ) ?;
139
149
assert ! ( is_unique_record( & record) ?) ;
140
150
You can’t perform that action at this time.
0 commit comments