mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-12-08 16:50:27 +00:00
10 lines
227 B
Go
10 lines
227 B
Go
|
|
package obiformats
|
||
|
|
|
||
|
|
import "git.metabarcoding.org/lecasofts/go/obitools/pkg/obiiter"
|
||
|
|
|
||
|
|
func ReadEmptyFile(options ...WithOption) (obiiter.IBioSequence, error) {
|
||
|
|
out := obiiter.MakeIBioSequence()
|
||
|
|
out.Close()
|
||
|
|
return out, nil
|
||
|
|
}
|