class SNP

Attributes

depth[RW]
mapping_qual[RW]
position[RW]
ref[RW]
source[RW]
strand_bias[RW]
var[RW]
zygosity[RW]

Public Class Methods

new(position) click to toggle source
# File lib/gene_assembler/snp.rb, line 3
def initialize(position)
        @position=position
        @ref=nil
        @var=nil
        @source=nil
        @depth=nil
        @zygosity=nil
        @mapping_qual=nil
        @strand_bias=nil              
end