We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2827ae2 commit 50595e0Copy full SHA for 50595e0
1 file changed
biojava-structure-gui/src/main/java/org/biojava/nbio/structure/align/gui/jmol/JmolPanel.java
@@ -117,8 +117,8 @@ public void executeCmd(String rasmolScript) {
117
public void setStructure(Structure s)
118
{
119
this.structure = s;
120
- String pdb = s.toPDB();
121
- viewer.openStringInline(pdb);
+ String serialized = s.toMMCIF();
+ viewer.openStringInline(serialized);
122
evalString("save STATE state_1");
123
}
124
0 commit comments