Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions biojava-genome/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>compile</scope>
<version>19.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
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;
}
}
Loading