Skip to content

Commit 978efc7

Browse files
committed
Updates to the pom and refactoring due to mmtf-java
1 parent 468bcb4 commit 978efc7

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

biojava-structure/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@
2323
<dependency>
2424
<groupId>org.rcsb</groupId>
2525
<artifactId>mmtf-api</artifactId>
26-
<version>0.0.1-alpha4-SNAPSHOT</version>
26+
<version>0.0.1-alpha5-SNAPSHOT</version>
2727
<scope>compile</scope>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.rcsb</groupId>
31-
<artifactId>mmtf-common</artifactId>
32-
<version>0.0.1-alpha4-SNAPSHOT</version>
31+
<artifactId>mmtf-serialization</artifactId>
32+
<version>0.0.1-alpha5-SNAPSHOT</version>
3333
<scope>compile</scope>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.rcsb</groupId>
3737
<artifactId>mmtf-decoder</artifactId>
38-
<version>0.0.1-alpha4-SNAPSHOT</version>
38+
<version>0.0.1-alpha5-SNAPSHOT</version>
3939
<scope>compile</scope>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.rcsb</groupId>
4343
<artifactId>mmtf-encoder</artifactId>
44-
<version>0.0.1-alpha4-SNAPSHOT</version>
44+
<version>0.0.1-alpha5-SNAPSHOT</version>
4545
<scope>compile</scope>
4646
</dependency>
4747
<dependency>

biojava-structure/src/main/java/org/biojava/nbio/structure/io/mmtf/MmtfStructureReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import org.biojava.nbio.structure.xtal.CrystalCell;
3232
import org.biojava.nbio.structure.xtal.SpaceGroup;
3333
import org.rcsb.mmtf.api.StructureAdapterInterface;
34-
import org.rcsb.mmtf.dataholders.MmtfEncodedStructure;
34+
import org.rcsb.mmtf.dataholders.MmtfStructure;
3535

3636

3737
/**
@@ -180,7 +180,7 @@ public void setGroupInfo(String groupName, int groupNumber,
180180
}
181181
group.setChemComp(chemComp);
182182
group.setPDBName(groupName);
183-
if (insertionCode == MmtfEncodedStructure.UNAVAILABLE_CHAR_VALUE) {
183+
if (insertionCode == MmtfStructure.UNAVAILABLE_CHAR_VALUE) {
184184
group.setResidueNumber(chain.getChainID().trim(), groupNumber, null);
185185
} else {
186186
group.setResidueNumber(chain.getChainID().trim(),

0 commit comments

Comments
 (0)