-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Labels
Description
This is a feature request to complement pull request #12. The API should make custom fields accessible.
Example how this could look like (better API proposals welcome):
mmtf::StructureData data;
std::vector<int32_t> colorList; // custom field
mmtf::MapDecoder md = mmtf::mapDecoderFromFile("test.mmtf"); // proposed API
md.decode(data); // proposed API
md.decode("pymolColorList", false, colorList);