We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45435a3 commit 3ddfb23Copy full SHA for 3ddfb23
biojava-core/src/main/java/org/biojava/nbio/core/sequence/GeneSequence.java
@@ -261,7 +261,7 @@ public ExonSequence removeExon(String accession) {
261
*/
262
public ExonSequence addExon(AccessionID accession, int begin, int end) {
263
if (exonSequenceHashMap.containsKey(accession.getID())) {
264
- throw new IllegalArgumentException("Duplicate accesion id " + accession.getID());
+ throw new IllegalArgumentException("Duplicate accession id: " + accession.getID());
265
}
266
267
ExonSequence exonSequence = new ExonSequence(this, begin, end); //sense should be the same as parent
0 commit comments