Method: Bio::Fastq#format
- Defined in:
- lib/bio/db/fastq.rb
#format ⇒ Object
Format name. One of “fastq-sanger”, “fastq-solexa”, “fastq-illumina”, or nil (when not specified).
- Returns
-
(String or nil) format name
498 499 500 |
# File 'lib/bio/db/fastq.rb', line 498 def format ((defined? @format) && @format) ? @format.name : nil end |