Skip to content

Commit 1a27afc

Browse files
committed
adding tools to map from chromosome positions to mRNA coding sequence position.
1 parent fd00534 commit 1a27afc

File tree

3 files changed

+1377
-0
lines changed

3 files changed

+1377
-0
lines changed

biojava-genome/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@
7171
</plugins>
7272
</build>
7373
<dependencies>
74+
<dependency>
75+
<groupId>com.google.guava</groupId>
76+
<artifactId>guava</artifactId>
77+
<scope>compile</scope>
78+
<version>19.0</version>
79+
</dependency>
7480
<dependency>
7581
<groupId>junit</groupId>
7682
<artifactId>junit</artifactId>
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)