mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
some minor improvements
This commit is contained in:
@ -7,6 +7,10 @@
|
|||||||
- In `obipairing`, correct the stats `seq_a_single` and `seq_b_single` when
|
- In `obipairing`, correct the stats `seq_a_single` and `seq_b_single` when
|
||||||
on right alignment mode
|
on right alignment mode
|
||||||
|
|
||||||
|
- Not really a bug but the memory impact of `obiuniq` has been reduced by reducing
|
||||||
|
the batch size and not reading the qualities from the fastq files as `obiuniq`
|
||||||
|
is producing only fasta output without qualities.
|
||||||
|
|
||||||
### New features
|
### New features
|
||||||
|
|
||||||
- Most of the time obitools identify automatically sequence file format. But
|
- Most of the time obitools identify automatically sequence file format. But
|
||||||
|
@ -30,6 +30,7 @@ func main() {
|
|||||||
// trace.Start(ftrace)
|
// trace.Start(ftrace)
|
||||||
// defer trace.Stop()
|
// defer trace.Stop()
|
||||||
|
|
||||||
|
obioptions.SetBatchSize(10)
|
||||||
obioptions.SetReadQualities(false)
|
obioptions.SetReadQualities(false)
|
||||||
optionParser := obioptions.GenerateOptionParser(obiuniq.OptionSet)
|
optionParser := obioptions.GenerateOptionParser(obiuniq.OptionSet)
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
// TODO: The version number is extracted from git. This induces that the version
|
// TODO: The version number is extracted from git. This induces that the version
|
||||||
// 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 = "d29a56d"
|
var _Commit = "40fb4e9"
|
||||||
var _Version = "Release 4.3.0"
|
var _Version = "Release 4.3.0"
|
||||||
|
|
||||||
// Version returns the version of the obitools package.
|
// Version returns the version of the obitools package.
|
||||||
|
Reference in New Issue
Block a user