Skip to content

Commit 795be8f

Browse files
committed
new utility class for chromosome mappings.
1 parent f63309d commit 795be8f

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

  • biojava-genome/src/main/java/org/biojava/nbio/genome/parsers/genename
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package org.biojava.nbio.genome.parsers.genename;
2+
3+
/**
4+
* Created by ap3 on 27/10/2014.
5+
*/
6+
public class ChromPos {
7+
8+
int pos;
9+
int phase;
10+
11+
public int getPhase() {
12+
return phase;
13+
}
14+
15+
public void setPhase(int phase) {
16+
this.phase = phase;
17+
}
18+
19+
public int getPos() {
20+
return pos;
21+
}
22+
23+
public void setPos(int pos) {
24+
this.pos = pos;
25+
}
26+
27+
public ChromPos(int pos, int phase){
28+
this.pos = pos;
29+
this.phase = phase;
30+
}
31+
}

0 commit comments

Comments
 (0)