2023-10-05 07:21:12 +02:00
|
|
|
package obiformats
|
|
|
|
|
|
2023-11-29 12:14:37 +01:00
|
|
|
import "git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obiiter"
|
2023-10-05 07:21:12 +02:00
|
|
|
|
|
|
|
|
func ReadEmptyFile(options ...WithOption) (obiiter.IBioSequence, error) {
|
|
|
|
|
out := obiiter.MakeIBioSequence()
|
|
|
|
|
out.Close()
|
|
|
|
|
return out, nil
|
|
|
|
|
}
|