Commit 5084e718 by maarten

fix rama-angles (in fact, support X as atom type)

git-svn-id: svn+ssh://gitlab/srv/svn-repos/pdb-redo/trunk@519 a1961a4f-ab94-4bcc-80e8-33b5a54de466
parent 11b4c1d3
......@@ -195,7 +195,8 @@ struct AtomImpl
cif::tie(symbol, mAtomID, mCompID, mAsymID, mSeqID, mAltID) =
mRow.get("type_symbol", "label_atom_id", "label_comp_id", "label_asym_id", "label_seq_id", "label_alt_id");
mType = AtomTypeTraits(symbol).type();
if (symbol != "X")
mType = AtomTypeTraits(symbol).type();
float x, y, z;
cif::tie(x, y, z) = mRow.get("Cartn_x", "Cartn_y", "Cartn_z");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment