Skip to content
Snippets Groups Projects
Commit 27ef44b8 authored by Alexander Rose's avatar Alexander Rose
Browse files

throwing in hasNdbStructNtcCategories breaks non-mmcif files

parent 478033d4
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ export namespace ConfalPyramids {
}
function hasNdbStructNtcCategories(model: Model): boolean {
if (!MmcifFormat.is(model.sourceData)) throw new Error('Data format must be mmCIF');
if (!MmcifFormat.is(model.sourceData)) return false;
const names = (model.sourceData).data.frame.categoryNames;
return names.includes('ndb_struct_ntc_step') && names.includes('ndb_struct_ntc_step_summary');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment