HTS::Bam::Flag
Inherits Reference < Object
Constants
TABLE = {"paired?": LibHTS2::BAM_FPAIRED,
"proper_pair?": LibHTS2::BAM_FPROPER_PAIR,
"unmapped?": LibHTS2::BAM_FUNMAP,
"mate_unmapped?": LibHTS2::BAM_FMUNMAP,
"reverse?": LibHTS2::BAM_FREVERSE,
"mate_reverse?": LibHTS2::BAM_FMREVERSE,
"read1?": LibHTS2::BAM_FREAD1,
"read2?": LibHTS2::BAM_FREAD2,
"secondary?": LibHTS2::BAM_FSECONDARY,
"qcfail?": LibHTS2::BAM_FQCFAIL,
"duplicate?": LibHTS2::BAM_FDUP,
"supplementary?": LibHTS2::BAM_FSUPPLEMENTARY}
Constructors
new(flag_value : UInt16)
SourceInstance methods
&(other)
Source<<(other)
Source>>(other)
Source^(other)
Source|(other)
Sourceduplicate?
Sourcehas_flag?(m)
Sourcemate_reverse?
Sourcemate_unmapped?
Sourcepaired?
Sourceproper_pair?
Sourceqcfail?
Sourceread1?
Sourceread2?
Sourcereverse?
Sourcesecondary?
Sourcesupplementary?
Sourceto_i
Sourceto_s(io : IO)
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>
unmapped?
Sourcevalue
Source