From 50c34d356c621873482fdcad167c161a93a896d1 Mon Sep 17 00:00:00 2001 From: Matt Larson Date: Wed, 30 Nov 2016 14:39:58 -0600 Subject: [PATCH 01/10] Added exception handler for out-of-bounds errors when parsing lines, usually indicative of misformated lines. Added line length checks within the LINK and CONECT parsing blocks to allow for short lines to be parsed. --- .../nbio/structure/io/PDBFileParser.java | 115 ++++++++++-------- .../nbio/structure/io/TestShortLines.java | 74 +++++++++++ 2 files changed, 138 insertions(+), 51 deletions(-) create mode 100644 biojava-structure/src/test/java/org/biojava/nbio/structure/io/TestShortLines.java diff --git a/biojava-structure/src/main/java/org/biojava/nbio/structure/io/PDBFileParser.java b/biojava-structure/src/main/java/org/biojava/nbio/structure/io/PDBFileParser.java index 10cade8e16..c6dcf34f24 100644 --- a/biojava-structure/src/main/java/org/biojava/nbio/structure/io/PDBFileParser.java +++ b/biojava-structure/src/main/java/org/biojava/nbio/structure/io/PDBFileParser.java @@ -2017,6 +2017,8 @@ private void switchCAOnly(){ /** safes repeating a few lines ... */ private Integer conect_helper (String line,int start,int end) { + if (line.length() < end) return null; + String sbond = line.substring(start,end).trim(); int bond = -1 ; Integer b = null ; @@ -2343,7 +2345,15 @@ private void pdb_SSBOND_Handler(String line){ private void pdb_LINK_Handler(String line) { if (params.isHeaderOnly()) return; + + // Check for the minimal set of fields. + if (line.length()<56) { + logger.info("LINK line has length under 56. Ignoring it."); + return; + } + int len = line.length(); + String name1 = line.substring(12, 16).trim(); String altLoc1 = line.substring(16, 17).trim(); String resName1 = line.substring(17, 20).trim(); @@ -2356,10 +2366,13 @@ private void pdb_LINK_Handler(String line) { String resName2 = line.substring(47, 50).trim(); String chainID2 = line.substring(51, 52).trim(); String resSeq2 = line.substring(52, 56).trim(); - String iCode2 = line.substring(56, 57).trim(); + String iCode2 = null; // Might get trimmed if blank. + if (len > 56) iCode2 = line.substring(56, 57).trim(); - String sym1 = line.substring(59, 65).trim(); - String sym2 = line.substring(66, 72).trim(); + String sym1 = null; + if (len > 64) sym1 = line.substring(59, 65).trim(); + String sym2 = null; + if (len > 71) sym2 = line.substring(66, 72).trim(); // System.err.println("LINK"); // System.err.println("\tName: " + name1); @@ -2690,54 +2703,54 @@ public Structure parsePDBFile(BufferedReader buf) String recordName = line.substring (0, 6).trim (); - if (recordName.equals("ATOM")) - pdb_ATOM_Handler(line); - else if (recordName.equals("SEQRES")) - pdb_SEQRES_Handler(line); - else if (recordName.equals("HETATM")) - pdb_ATOM_Handler(line); - else if (recordName.equals("MODEL")) - pdb_MODEL_Handler(line); - else if (recordName.equals("HEADER")) - pdb_HEADER_Handler(line); - else if (recordName.equals("AUTHOR")) - pdb_AUTHOR_Handler(line); - else if (recordName.equals("TITLE")) - pdb_TITLE_Handler(line); - else if (recordName.equals("SOURCE")) - sourceLines.add(line); //pdb_SOURCE_Handler - else if (recordName.equals("COMPND")) - compndLines.add(line); //pdb_COMPND_Handler - else if (recordName.equals("JRNL")) - pdb_JRNL_Handler(line); - else if (recordName.equals("EXPDTA")) - pdb_EXPDTA_Handler(line); - else if (recordName.equals("CRYST1")) - pdb_CRYST1_Handler(line); - else if (recordName.startsWith("MTRIX")) - pdb_MTRIXn_Handler(line); - else if (recordName.equals("REMARK")) - pdb_REMARK_Handler(line); - else if (recordName.equals("CONECT")) - pdb_CONECT_Handler(line); - else if (recordName.equals("REVDAT")) - pdb_REVDAT_Handler(line); - else if (recordName.equals("DBREF")) - pdb_DBREF_Handler(line); - else if (recordName.equals("SITE")) - pdb_SITE_Handler(line); - else if (recordName.equals("SSBOND")) - pdb_SSBOND_Handler(line); - else if (recordName.equals("LINK")) - pdb_LINK_Handler(line); - else if ( params.isParseSecStruc()) { - if ( recordName.equals("HELIX") ) pdb_HELIX_Handler ( line ) ; - else if (recordName.equals("SHEET")) pdb_SHEET_Handler(line ) ; - else if (recordName.equals("TURN")) pdb_TURN_Handler( line ) ; - } - else { - // this line type is not supported, yet. - // we ignore it + try { + if (recordName.equals("ATOM")) + pdb_ATOM_Handler(line); + else if (recordName.equals("SEQRES")) + pdb_SEQRES_Handler(line); + else if (recordName.equals("HETATM")) + pdb_ATOM_Handler(line); + else if (recordName.equals("MODEL")) + pdb_MODEL_Handler(line); + else if (recordName.equals("HEADER")) + pdb_HEADER_Handler(line); + else if (recordName.equals("AUTHOR")) + pdb_AUTHOR_Handler(line); + else if (recordName.equals("TITLE")) + pdb_TITLE_Handler(line); + else if (recordName.equals("SOURCE")) + sourceLines.add(line); //pdb_SOURCE_Handler + else if (recordName.equals("COMPND")) + compndLines.add(line); //pdb_COMPND_Handler + else if (recordName.equals("JRNL")) + pdb_JRNL_Handler(line); + else if (recordName.equals("EXPDTA")) + pdb_EXPDTA_Handler(line); + else if (recordName.equals("CRYST1")) + pdb_CRYST1_Handler(line); + else if (recordName.startsWith("MTRIX")) + pdb_MTRIXn_Handler(line); + else if (recordName.equals("REMARK")) + pdb_REMARK_Handler(line); + else if (recordName.equals("CONECT")) + pdb_CONECT_Handler(line); + else if (recordName.equals("REVDAT")) + pdb_REVDAT_Handler(line); + else if (recordName.equals("DBREF")) + pdb_DBREF_Handler(line); + else if (recordName.equals("SITE")) + pdb_SITE_Handler(line); + else if (recordName.equals("SSBOND")) + pdb_SSBOND_Handler(line); + else if (recordName.equals("LINK")) + pdb_LINK_Handler(line); + else if ( params.isParseSecStruc()) { + if ( recordName.equals("HELIX") ) pdb_HELIX_Handler ( line ) ; + else if (recordName.equals("SHEET")) pdb_SHEET_Handler(line ) ; + else if (recordName.equals("TURN")) pdb_TURN_Handler( line ) ; + } + } catch (StringIndexOutOfBoundsException ex) { + logger.info("Unable to parse [" + line + "]"); } diff --git a/biojava-structure/src/test/java/org/biojava/nbio/structure/io/TestShortLines.java b/biojava-structure/src/test/java/org/biojava/nbio/structure/io/TestShortLines.java new file mode 100644 index 0000000000..70a35b542d --- /dev/null +++ b/biojava-structure/src/test/java/org/biojava/nbio/structure/io/TestShortLines.java @@ -0,0 +1,74 @@ +package org.biojava.nbio.structure.io; + +import static org.junit.Assert.assertEquals; + +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.io.InputStream; + +import org.biojava.nbio.structure.Atom; +import org.biojava.nbio.structure.Chain; +import org.biojava.nbio.structure.Group; +import org.biojava.nbio.structure.Structure; +import org.junit.Test; + +/** + * This class will test parsing short CONECT lines. + *

(c) 2016 DNASTAR, Inc.

+ * @since Nov 30, 2016 + * @author larsonm + */ +public class TestShortLines { + + @Test + public void testConect() throws IOException { + PDBFileParser pdbPars = new PDBFileParser(); + FileParsingParameters params = pdbPars.getFileParsingParameters(); + params.setCreateAtomBonds(true); + + // CONECTS will be deprecated, but will we create bonds? + // Like the LINK records, should BioJava create BondImpl when params.setCreateAtomBonds(true)? + + StringBuilder sb = new StringBuilder(); + sb.append("HETATM 2398 P FAD A 500 8.398 46.448 73.490 1.00 13.51 P \n"); + sb.append("HETATM 2399 PA FAD A 500 6.089 45.580 75.235 1.00 15.88 P \n"); + sb.append("HETATM 2400 O1P FAD A 500 7.908 47.684 72.869 1.00 4.19 O \n"); + sb.append("CONECT 2400 2398\n"); + String shortLine = sb.toString(); + Structure s; + // Parse short + try(InputStream is = new ByteArrayInputStream(shortLine.getBytes())) { + s = pdbPars.parsePDBFile(is); + } + + // After 4.2, CONECTS are deprecated, but there is not yet an implementation + // describing how CONECTS will be replaced - will Bonds be created? + assertEquals(1, s.getConnections().size()); + } + + @Test + public void testLINK() throws IOException { + Structure s; + PDBFileParser pdbPars = new PDBFileParser(); + FileParsingParameters params = pdbPars.getFileParsingParameters(); + params.setCreateAtomBonds(true); + + StringBuilder sb = new StringBuilder(); + sb.append("ATOM 2412 C21 2EG A 7 0.888 44.973 72.238 1.00 29.17 C \n"); + sb.append("ATOM 2413 C22 2EG B 19 0.888 44.973 72.238 1.00 29.17 C \n"); + //sb.append("LINK C21 2EG A 7 C22 2EG B 19 1555 1555 1.56 "); + sb.append("LINK C21 2EG A 7 C22 2EG B 19\n"); + String shortLine = sb.toString(); + + // Parse short + try(InputStream is = new ByteArrayInputStream(shortLine.getBytes())) { + s = pdbPars.parsePDBFile(is); + } + + // Should be a bond present in the Atoms. + Chain c = s.getChain(0, 0); + Group g = c.getAtomGroups().get(0); + Atom a = g.getAtom(0); + assertEquals(1, a.getBonds().size()); + } +} From bce39db7ca033c07fe016927bc553649cc29a3b8 Mon Sep 17 00:00:00 2001 From: Jose Manuel Duarte Date: Thu, 6 Jul 2017 14:41:13 -0700 Subject: [PATCH 02/10] [maven-release-plugin] prepare for next development iteration --- biojava-aa-prop/pom.xml | 6 +++--- biojava-alignment/pom.xml | 6 +++--- biojava-core/pom.xml | 2 +- biojava-genome/pom.xml | 6 +++--- biojava-integrationtest/pom.xml | 4 ++-- biojava-modfinder/pom.xml | 4 ++-- biojava-ontology/pom.xml | 2 +- biojava-phylo/pom.xml | 4 ++-- biojava-protein-disorder/pom.xml | 4 ++-- biojava-sequencing/pom.xml | 4 ++-- biojava-structure-gui/pom.xml | 6 +++--- biojava-structure/pom.xml | 6 +++--- biojava-survival/pom.xml | 2 +- biojava-ws/pom.xml | 4 ++-- pom.xml | 4 ++-- 15 files changed, 32 insertions(+), 32 deletions(-) diff --git a/biojava-aa-prop/pom.xml b/biojava-aa-prop/pom.xml index 72d5044e69..80754119a3 100644 --- a/biojava-aa-prop/pom.xml +++ b/biojava-aa-prop/pom.xml @@ -2,7 +2,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT 4.0.0 biojava-aa-prop @@ -70,12 +70,12 @@ org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT org.biojava biojava-structure - 4.2.8 + 4.2.9-SNAPSHOT diff --git a/biojava-alignment/pom.xml b/biojava-alignment/pom.xml index d1ebe860f9..a0303b0dae 100644 --- a/biojava-alignment/pom.xml +++ b/biojava-alignment/pom.xml @@ -4,7 +4,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT biojava-alignment biojava-alignment @@ -46,7 +46,7 @@ org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT compile @@ -74,7 +74,7 @@ org.biojava biojava-phylo - 4.2.8 + 4.2.9-SNAPSHOT diff --git a/biojava-core/pom.xml b/biojava-core/pom.xml index 20b75fcb33..0f629b0f23 100644 --- a/biojava-core/pom.xml +++ b/biojava-core/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT 4.0.0 biojava-core diff --git a/biojava-genome/pom.xml b/biojava-genome/pom.xml index 452b909abd..d0d9df8990 100644 --- a/biojava-genome/pom.xml +++ b/biojava-genome/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT 4.0.0 biojava-genome @@ -85,13 +85,13 @@ org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT compile org.biojava biojava-alignment - 4.2.8 + 4.2.9-SNAPSHOT compile diff --git a/biojava-integrationtest/pom.xml b/biojava-integrationtest/pom.xml index 7fbc1deff2..b65c612ea0 100644 --- a/biojava-integrationtest/pom.xml +++ b/biojava-integrationtest/pom.xml @@ -4,7 +4,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT biojava-integrationtest jar @@ -32,7 +32,7 @@ org.biojava biojava-structure - 4.2.8 + 4.2.9-SNAPSHOT diff --git a/biojava-modfinder/pom.xml b/biojava-modfinder/pom.xml index fded08c306..8ded38b053 100644 --- a/biojava-modfinder/pom.xml +++ b/biojava-modfinder/pom.xml @@ -4,7 +4,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT biojava-modfinder biojava-modfinder @@ -31,7 +31,7 @@ org.biojava biojava-structure - 4.2.8 + 4.2.9-SNAPSHOT jar compile diff --git a/biojava-ontology/pom.xml b/biojava-ontology/pom.xml index cf6af99b55..3cbfe076b7 100644 --- a/biojava-ontology/pom.xml +++ b/biojava-ontology/pom.xml @@ -4,7 +4,7 @@ org.biojava biojava - 4.2.8 + 4.2.9-SNAPSHOT biojava-ontology diff --git a/biojava-phylo/pom.xml b/biojava-phylo/pom.xml index 8f4fae1576..6f4e0477e5 100644 --- a/biojava-phylo/pom.xml +++ b/biojava-phylo/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT 4.0.0 biojava-phylo @@ -44,7 +44,7 @@ org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT compile diff --git a/biojava-protein-disorder/pom.xml b/biojava-protein-disorder/pom.xml index cdbd04df3b..6d2dc6ff41 100644 --- a/biojava-protein-disorder/pom.xml +++ b/biojava-protein-disorder/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT biojava-protein-disorder jar @@ -63,7 +63,7 @@ org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT diff --git a/biojava-sequencing/pom.xml b/biojava-sequencing/pom.xml index 2e5f4af250..2cc15beadd 100644 --- a/biojava-sequencing/pom.xml +++ b/biojava-sequencing/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT 4.0.0 biojava-sequencing @@ -47,7 +47,7 @@ org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT compile diff --git a/biojava-structure-gui/pom.xml b/biojava-structure-gui/pom.xml index d9ea4db9f5..dcc92b9372 100644 --- a/biojava-structure-gui/pom.xml +++ b/biojava-structure-gui/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT 4.0.0 biojava-structure-gui @@ -25,13 +25,13 @@ org.biojava biojava-structure - 4.2.8 + 4.2.9-SNAPSHOT compile org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT compile diff --git a/biojava-structure/pom.xml b/biojava-structure/pom.xml index 0577749f78..85feaccc3b 100644 --- a/biojava-structure/pom.xml +++ b/biojava-structure/pom.xml @@ -4,7 +4,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT biojava-structure biojava-structure @@ -22,13 +22,13 @@ org.biojava biojava-alignment - 4.2.8 + 4.2.9-SNAPSHOT compile org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT compile diff --git a/biojava-survival/pom.xml b/biojava-survival/pom.xml index 784fe909ab..75854051ee 100644 --- a/biojava-survival/pom.xml +++ b/biojava-survival/pom.xml @@ -4,7 +4,7 @@ org.biojava biojava - 4.2.8 + 4.2.9-SNAPSHOT biojava-survival diff --git a/biojava-ws/pom.xml b/biojava-ws/pom.xml index fa83379487..97f9d915b9 100644 --- a/biojava-ws/pom.xml +++ b/biojava-ws/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.8 + 4.2.9-SNAPSHOT biojava-ws biojava-ws @@ -19,7 +19,7 @@ org.biojava biojava-core - 4.2.8 + 4.2.9-SNAPSHOT compile diff --git a/pom.xml b/pom.xml index 8085813a81..7a2668839b 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ org.biojava biojava pom - 4.2.8 + 4.2.9-SNAPSHOT biojava BioJava is an open-source project dedicated to providing a Java framework for processing biological data. It provides analytical and statistical routines, parsers for common file formats and allows the @@ -44,7 +44,7 @@ scm:git:git@github.com:biojava/biojava.git https://github.com/biojava/biojava - biojava-4.2.8 + biojava-4.2.1 diff --git a/biojava-alignment/pom.xml b/biojava-alignment/pom.xml index a0303b0dae..bbd3516da4 100644 --- a/biojava-alignment/pom.xml +++ b/biojava-alignment/pom.xml @@ -4,7 +4,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 biojava-alignment biojava-alignment @@ -46,7 +46,7 @@ org.biojava biojava-core - 4.2.9-SNAPSHOT + 4.2.9 compile @@ -74,7 +74,7 @@ org.biojava biojava-phylo - 4.2.9-SNAPSHOT + 4.2.9 diff --git a/biojava-core/pom.xml b/biojava-core/pom.xml index 0f629b0f23..7807aaefeb 100644 --- a/biojava-core/pom.xml +++ b/biojava-core/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 4.0.0 biojava-core diff --git a/biojava-genome/pom.xml b/biojava-genome/pom.xml index d0d9df8990..e3c8bc66e0 100644 --- a/biojava-genome/pom.xml +++ b/biojava-genome/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 4.0.0 biojava-genome @@ -85,13 +85,13 @@ org.biojava biojava-core - 4.2.9-SNAPSHOT + 4.2.9 compile org.biojava biojava-alignment - 4.2.9-SNAPSHOT + 4.2.9 compile diff --git a/biojava-integrationtest/pom.xml b/biojava-integrationtest/pom.xml index b65c612ea0..d024d95f5c 100644 --- a/biojava-integrationtest/pom.xml +++ b/biojava-integrationtest/pom.xml @@ -4,7 +4,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 biojava-integrationtest jar @@ -32,7 +32,7 @@ org.biojava biojava-structure - 4.2.9-SNAPSHOT + 4.2.9 diff --git a/biojava-modfinder/pom.xml b/biojava-modfinder/pom.xml index 8ded38b053..95f8367ac7 100644 --- a/biojava-modfinder/pom.xml +++ b/biojava-modfinder/pom.xml @@ -4,7 +4,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 biojava-modfinder biojava-modfinder @@ -31,7 +31,7 @@ org.biojava biojava-structure - 4.2.9-SNAPSHOT + 4.2.9 jar compile diff --git a/biojava-ontology/pom.xml b/biojava-ontology/pom.xml index 3cbfe076b7..e104b8caf8 100644 --- a/biojava-ontology/pom.xml +++ b/biojava-ontology/pom.xml @@ -4,7 +4,7 @@ org.biojava biojava - 4.2.9-SNAPSHOT + 4.2.9 biojava-ontology diff --git a/biojava-phylo/pom.xml b/biojava-phylo/pom.xml index 6f4e0477e5..ef52ff66d9 100644 --- a/biojava-phylo/pom.xml +++ b/biojava-phylo/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 4.0.0 biojava-phylo @@ -44,7 +44,7 @@ org.biojava biojava-core - 4.2.9-SNAPSHOT + 4.2.9 compile diff --git a/biojava-protein-disorder/pom.xml b/biojava-protein-disorder/pom.xml index 6d2dc6ff41..c1be8471f4 100644 --- a/biojava-protein-disorder/pom.xml +++ b/biojava-protein-disorder/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 biojava-protein-disorder jar @@ -63,7 +63,7 @@ org.biojava biojava-core - 4.2.9-SNAPSHOT + 4.2.9 diff --git a/biojava-sequencing/pom.xml b/biojava-sequencing/pom.xml index 2cc15beadd..271a3b0a74 100644 --- a/biojava-sequencing/pom.xml +++ b/biojava-sequencing/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 4.0.0 biojava-sequencing @@ -47,7 +47,7 @@ org.biojava biojava-core - 4.2.9-SNAPSHOT + 4.2.9 compile diff --git a/biojava-structure-gui/pom.xml b/biojava-structure-gui/pom.xml index dcc92b9372..7ee5f84970 100644 --- a/biojava-structure-gui/pom.xml +++ b/biojava-structure-gui/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 4.0.0 biojava-structure-gui @@ -25,13 +25,13 @@ org.biojava biojava-structure - 4.2.9-SNAPSHOT + 4.2.9 compile org.biojava biojava-core - 4.2.9-SNAPSHOT + 4.2.9 compile diff --git a/biojava-structure/pom.xml b/biojava-structure/pom.xml index 85feaccc3b..3942a08a66 100644 --- a/biojava-structure/pom.xml +++ b/biojava-structure/pom.xml @@ -4,7 +4,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 biojava-structure biojava-structure @@ -22,13 +22,13 @@ org.biojava biojava-alignment - 4.2.9-SNAPSHOT + 4.2.9 compile org.biojava biojava-core - 4.2.9-SNAPSHOT + 4.2.9 compile diff --git a/biojava-survival/pom.xml b/biojava-survival/pom.xml index 75854051ee..56312cb608 100644 --- a/biojava-survival/pom.xml +++ b/biojava-survival/pom.xml @@ -4,7 +4,7 @@ org.biojava biojava - 4.2.9-SNAPSHOT + 4.2.9 biojava-survival diff --git a/biojava-ws/pom.xml b/biojava-ws/pom.xml index 97f9d915b9..b41fac0e17 100644 --- a/biojava-ws/pom.xml +++ b/biojava-ws/pom.xml @@ -3,7 +3,7 @@ biojava org.biojava - 4.2.9-SNAPSHOT + 4.2.9 biojava-ws biojava-ws @@ -19,7 +19,7 @@ org.biojava biojava-core - 4.2.9-SNAPSHOT + 4.2.9 compile diff --git a/pom.xml b/pom.xml index 7a2668839b..02983fdba1 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ org.biojava biojava pom - 4.2.9-SNAPSHOT + 4.2.9 biojava BioJava is an open-source project dedicated to providing a Java framework for processing biological data. It provides analytical and statistical routines, parsers for common file formats and allows the @@ -44,7 +44,7 @@ scm:git:git@github.com:biojava/biojava.git https://github.com/biojava/biojava - biojava-4.2.1 + biojava-4.2.9