Commit 1e406253 by Maarten L. Hekkelman

loading unknown atoms

parent 6e3b85f4
......@@ -1492,7 +1492,15 @@ void Structure::loadData()
if (cif::VERBOSE > 0)
std::cerr << "Missing residue for atom " << atom << std::endl;
// assert(false);
// see if it might match a non poly
for (auto &res : mNonPolymers)
{
if (res.asymID() != atom.labelAsymID())
continue;
res.addAtom(atom);
break;
}
continue;
}
......
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