class
HTS::Bam::BaseMod::Modification
- HTS::Bam::BaseMod::Modification
- Reference
- Object
Overview
Individual base modification information
Defined in:
hts/bam/base_mod.crConstructors
Instance Method Summary
-
#canonical : String
Canonical base as single character string (A/C/G/T/N)
- #canonical_base : Int32
-
#code : String
Single-letter code or negative ChEBI number as String
- #modified_base : Int32
-
#probability : Float64 | Nil
0.0..1.0 probability, or nil if unknown (-1)
- #qual : Int32
- #strand : Int32
-
#to_s(io : IO) : Nil
Appends a short String representation of this object which includes its class name and its object address.
Constructor Detail
def self.new(modified_base : Int32, canonical_base : Int32, strand : Int32, qual : Int32)
#
Instance Method Detail
def to_s(io : IO) : Nil
#
Description copied from class Reference
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>