001package org.biojava.nbio.genome.parsers.genename;
002
003/**
004 * Created by ap3 on 27/10/2014.
005 */
006public class ChromPos {
007
008        private int pos;
009        private int phase;
010
011    public int getPhase() {
012        return phase;
013    }
014
015    public void setPhase(int phase) {
016        this.phase = phase;
017    }
018
019    public int getPos() {
020        return pos;
021    }
022
023    public void setPos(int pos) {
024        this.pos = pos;
025    }
026
027    public ChromPos(int pos, int phase){
028        this.pos = pos;
029        this.phase = phase;
030    }
031}