struct VCFTools::Variant
- VCFTools::Variant
- Struct
- Value
- Object
Defined in:
VCF_tools/variant.crConstructors
Instance Method Summary
- #alt : Array(String)
- #alt=(alt : Array(String))
- #chromosome : String
- #chromosome=(chromosome : String)
- #filter : String
- #filter=(filter : String)
- #id : String
- #id=(id : String)
- #info : String
- #info=(info : String)
- #position : Int32
- #position=(position : Int32)
- #qual : Float32 | Nil
- #qual=(qual : Float32 | Nil)
- #ref : String
- #ref=(ref : String)
- #sample : Hash(String, String)
- #sample=(sample : Hash(String, String))
Constructor Detail
def self.new(chromosome : String, position : Int32, id : String, ref : String, alt : Array(String), qual : Float32 | Nil, filter : String, info : String, sample : Hash(String, String))
#