module
Fastx::Fastq
Defined in:
fastx/fastq.crfastx/fastq/reader.cr
fastx/fastq/writer.cr
Class Method Summary
-
.open(filename, mode = "r", &)
Opens a FASTQ file for reading ("r") or writing ("w").
-
.open(filename, mode = "r")
Opens a FASTQ file for reading ("r") or writing ("w").
Class Method Detail
def self.open(filename, mode = "r", &)
#
Opens a FASTQ file for reading ("r") or writing ("w"). Yields the Reader/Writer to the block and automatically closes it.
def self.open(filename, mode = "r")
#
Opens a FASTQ file for reading ("r") or writing ("w"). Returns the Reader/Writer instance (manual close required).