2010/12/10 Jan Marten Simons <marten@xtal.rwth-aachen.de>
So from looking at the source I'm pretty confident that cctbx can load a
crystalstructure from a .cif file (like those obtained from COD,
http://www.crystallography.net/). But so far I've not been able to figure out
how to do this. My experiments included:
from iotbx import crystal_symmetry_from_any as sym_from_any
from iotbx import file_reader
file_name = "./xtal_data/9008806.cif"
structure = file_reader.any_file(file_name) #gives an object, but not a structure
# or
structure = sym_from_any.extract_from(file_name) # returns none