mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
17 lines
336 B
Go
17 lines
336 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obiformats"
|
|
"git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obiutils"
|
|
)
|
|
|
|
func main() {
|
|
|
|
obiformats.DetectTaxonomyFormat(os.Args[1])
|
|
println(obiutils.RemoveAllExt("toto/tutu/test.txt"))
|
|
println(obiutils.Basename("toto/tutu/test.txt"))
|
|
|
|
}
|