Skip to content

Commit

Permalink
HotFix - double-bond stereo creation
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Nov 27, 2015
1 parent 6e6a522 commit 6c6f744
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beam</artifactId>
<groupId>uk.ac.ebi.beam</groupId>
<version>0.9</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 3 additions & 1 deletion core/src/main/java/uk/ac/ebi/beam/GraphBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,9 @@ private void assignDirectionalLabels() {
continue;
checkGeometricBuilder(builder); // check required vertices are adjacent

int u = builder.u, v = builder.v, x = builder.x, y = builder.y;
final int u = builder.u, v = builder.v, x = builder.x, y = builder.y;

if (x == y) continue;

fix(g, u, v, adjToDb);
fix(g, v, u, adjToDb);
Expand Down
2 changes: 1 addition & 1 deletion exec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>beam</artifactId>
<groupId>uk.ac.ebi.beam</groupId>
<version>0.9</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion func/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beam</artifactId>
<groupId>uk.ac.ebi.beam</groupId>
<version>0.9</version>
<version>0.9.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<description>SMILES parsing and generation library for cheminformatics</description>
<url>http://www.github.com/johnmay/beam/</url>
<packaging>pom</packaging>
<version>0.9</version>
<version>0.9.1</version>
<modules>
<module>core</module>
<module>func</module>
Expand Down

0 comments on commit 6c6f744

Please sign in to comment.