class

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)
Source

Instance methods

&(other)
Source
<<(other)
Source
>>(other)
Source
^(other)
Source
|(other)
Source
duplicate?
Source
has_flag?(m)
Source
mate_reverse?
Source
mate_unmapped?
Source
paired?
Source
proper_pair?
Source
qcfail?
Source
read1?
Source
read2?
Source
reverse?
Source
secondary?
Source
supplementary?
Source
to_i
Source
to_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>
Source
unmapped?
Source
value
Source