Skip to content

Commit fe57171

Browse files
authored
Update size.rs
add line 91
1 parent cc38221 commit fe57171

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/size.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ pub fn size_fastq(
8888
for vrec in rx_tmp {
8989
let mut base = Base::new();
9090
for rec in vrec {
91+
base.read += 1;
9192
for nt in rec.seq().iter() {
9293
match nt {
9394
&b'A' => base.a +=1,
@@ -125,4 +126,4 @@ pub fn size_fastq(
125126
info!("time elapsed is: {:?}",start.elapsed());
126127
}
127128
Ok(())
128-
}
129+
}

0 commit comments

Comments
 (0)