class MgNu::Parser::Sam::Pair

Attributes

first[RW]
name[RW]
second[RW]

Public Class Methods

new(name, first, second) click to toggle source

create a new Pair object

# File lib/mgnu/parser/sam/pair.rb, line 9
def initialize(name, first, second)
        @name = name
        @first = first
        @second = second
end