patch a duplicate --taxonomy option in obirefidxdb

This commit is contained in:
Eric Coissac
2025-03-06 11:36:20 +01:00
parent 286e27d6ba
commit b5cf586f17
2 changed files with 1 additions and 3 deletions

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 = "996ec69" var _Commit = "286e27d"
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.

View File

@ -1,7 +1,6 @@
package obirefidx package obirefidx
import ( import (
"git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obioptions"
"git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obitools/obiconvert" "git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obitools/obiconvert"
"github.com/DavidGamba/go-getoptions" "github.com/DavidGamba/go-getoptions"
) )
@ -10,5 +9,4 @@ import (
// the obiuniq command // the obiuniq command
func OptionSet(options *getoptions.GetOpt) { func OptionSet(options *getoptions.GetOpt) {
obiconvert.OptionSet(options) obiconvert.OptionSet(options)
obioptions.LoadTaxonomyOptionSet(options, true, false)
} }