Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cossio/fastxdoreaders.jl
https://github.com/cossio/fastxdoreaders.jl
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cossio/fastxdoreaders.jl
- Owner: cossio
- License: mit
- Created: 2023-09-22T08:53:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-30T00:01:19.000Z (6 months ago)
- Last Synced: 2024-04-30T01:26:05.280Z (6 months ago)
- Language: Julia
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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: GzipDecompressorStreamfasta_reader(GzipDecompressorStream(open("foo.fna.gz"))) do reader
# ...
end
```which then takes care of closing the stream automatically after the closure finishes running.