struct
Wgsim::Sequencing::FastqRecord
- Wgsim::Sequencing::FastqRecord
- Struct
- Value
- Object
Overview
One FASTQ read emitted by the paired-end simulator.
The identifier includes fragment coordinates so a student can trace a read back to the simulated DNA fragment it came from.
Defined in:
wgsim/sequencing/fastq_record.crConstructors
Instance Method Summary
- #fragment_start : Int32
- #fragment_start=(fragment_start : Int32)
- #identifier : String
- #insert_size : Int32
- #insert_size=(insert_size : Int32)
- #mate_index : Int32
- #mate_index=(mate_index : Int32)
- #pair_index : Int32
- #pair_index=(pair_index : Int32)
- #quality_sequence : Slice(UInt8)
- #quality_sequence=(quality_sequence : Slice(UInt8))
- #read_name : String
- #read_name=(read_name : String)
- #read_sequence : Slice(UInt8)
- #read_sequence=(read_sequence : Slice(UInt8))
-
#to_s(io : IO)
Same as
#inspect(io). -
#to_s : String
Returns a nicely readable and concise string representation of this object, typically intended for users.
Constructor Detail
def self.new(read_name : String, pair_index : Int32, fragment_start : Int32, insert_size : Int32, mate_index : Int32, read_sequence : Slice(UInt8), quality_sequence : Slice(UInt8))
#
Instance Method Detail
def to_s : String
#
Description copied from class Object
Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO) which can be overridden for custom implementations.
Also see #inspect.