update release notes

This commit is contained in:
Eric Coissac
2025-03-12 14:06:20 +01:00
parent 3a1cf4fe97
commit 7a9dc1ab3b
2 changed files with 7 additions and 1 deletions

View File

@ -21,6 +21,12 @@
### Enhancement ### Enhancement
- Some sequences in the Genbank and EMBL databases are several gigabases long. The
sequence parser had to reallocate and recopy memory many times to read them,
resulting in a complexity of O(N^2) for reading such large sequences.
The new file chunk reader has a linear algorithm that speeds up the reading
of very long sequences.
- A new option **--csv** is added to every obitools to indicate that the input - A new option **--csv** is added to every obitools to indicate that the input
format is CSV format is CSV

View File

@ -8,7 +8,7 @@ import (
// corresponds to the last commit, and not the one when the file will be // corresponds to the last commit, and not the one when the file will be
// commited // commited
var _Commit = "937a483" var _Commit = "3a1cf4f"
var _Version = "Release 4.4.0" var _Version = "Release 4.4.0"
// Version returns the version of the obitools package. // Version returns the version of the obitools package.