Skip to content

Commit

Permalink
new utility class for chromosome mappings.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasprlic committed Jul 29, 2016
1 parent f63309d commit 795be8f
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package org.biojava.nbio.genome.parsers.genename;

/**
* Created by ap3 on 27/10/2014.
*/
public class ChromPos {

int pos;
int phase;

public int getPhase() {
return phase;
}

public void setPhase(int phase) {
this.phase = phase;
}

public int getPos() {
return pos;
}

public void setPos(int pos) {
this.pos = pos;
}

public ChromPos(int pos, int phase){
this.pos = pos;
this.phase = phase;
}
}

0 comments on commit 795be8f

Please sign in to comment.