code refactoring. Prefix function name having behaviour depending on command line option by the prefix CLI

This commit is contained in:
2023-02-23 23:32:59 +01:00
parent a0ab14c205
commit ebb05fcdf7
15 changed files with 39 additions and 21 deletions

View File

@@ -0,0 +1,17 @@
package main
import (
"git.metabarcoding.org/lecasofts/go/obitools/pkg/obiiter"
)
func main() {
// optionParser := obioptions.GenerateOptionParser(obiconvert.OptionSet)
// _, args, _ := optionParser(os.Args)
// fs, _ := obiconvert.ReadBioSequences(args...)
// //obicsv.CLIWriteCSV(fs, true)
obiiter.WaitForLastPipe()
}