mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
10 lines
234 B
Go
10 lines
234 B
Go
package obiformats
|
|
|
|
import "git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obiiter"
|
|
|
|
func ReadEmptyFile(options ...WithOption) (obiiter.IBioSequence, error) {
|
|
out := obiiter.MakeIBioSequence()
|
|
out.Close()
|
|
return out, nil
|
|
}
|