File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
- [ SeqKit v2.5.1] ( https://github.com/shenwei356/seqkit/releases/tag/v2.5.1 ) - 2023-07-16
2
2
[ ![ Github Releases (by Release)] ( https://img.shields.io/github/downloads/shenwei356/seqkit/v2.5.1/total.svg )] ( https://github.com/shenwei356/seqkit/releases/tag/v2.5.1 )
3
+ - ` seqkit stats ` :
4
+ - fix concurrency bug introduced in v2.5.0. [ #405 ] ( https://github.com/shenwei356/seqkit/issues/405 )
3
5
- ` seqkit subseq ` :
4
6
- sequence/chromosome IDs are case-sensitive now. [ #400 )(https://github.com/shenwei356/seqkit/issues/400 )
5
7
- [ SeqKit v2.5.0] ( https://github.com/shenwei356/seqkit/releases/tag/v2.5.0 ) - 2023-07-16
Original file line number Diff line number Diff line change @@ -261,9 +261,9 @@ Tips:
261
261
buf [info .id ] = info // save for later check
262
262
263
263
// check bufferd results
264
- if info1 , ok := buf [id ]; ok {
264
+ if info , ok := buf [id ]; ok {
265
265
if ! tabular {
266
- statInfos = append (statInfos , info1 )
266
+ statInfos = append (statInfos , info )
267
267
} else {
268
268
fmt .Fprintf (outfh , "%s\t %s\t %s\t %d\t %d\t %d\t %.1f\t %d" ,
269
269
info .file ,
@@ -294,7 +294,7 @@ Tips:
294
294
outfh .Flush ()
295
295
}
296
296
297
- delete (buf , info1 .id )
297
+ delete (buf , info .id )
298
298
id ++
299
299
}
300
300
}
You can’t perform that action at this time.
0 commit comments