mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +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
|
||
|
}
|