Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cossio/fastxdoreaders.jl


https://github.com/cossio/fastxdoreaders.jl

Last synced: 10 days ago
JSON representation

Awesome Lists containing this project

README

        

# FASTXDoReaders

This package exports two functions: `fasta_reader` and `fastq_reader`. These functions allow you to write things like:

```julia
using FASTXDoReaders: fasta_reader
using CodecZlib: GzipDecompressorStream

fasta_reader(GzipDecompressorStream(open("foo.fna.gz"))) do reader
# ...
end
```

which then takes care of closing the stream automatically after the closure finishes running.