mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
13 lines
325 B
Go
13 lines
325 B
Go
package obirefidx
|
|
|
|
import (
|
|
"git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obitools/obiconvert"
|
|
"github.com/DavidGamba/go-getoptions"
|
|
)
|
|
|
|
// OptionSet adds to the basic option set every options declared for
|
|
// the obiuniq command
|
|
func OptionSet(options *getoptions.GetOpt) {
|
|
obiconvert.OptionSet(false)(options)
|
|
}
|