Skip to content

Commit

Permalink
Merge pull request #547 from andreasprlic/bugfixes-4.2
Browse files Browse the repository at this point in the history
Bugfixes 4.2
  • Loading branch information
josemduarte committed Jul 29, 2016
2 parents 3bc719a + 795be8f commit b88dd4e
Show file tree
Hide file tree
Showing 4 changed files with 1,423 additions and 0 deletions.
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;
}
}

0 comments on commit b88dd4e

Please sign in to comment.