Skip to content
Snippets Groups Projects
Commit ff97d71b authored by David Sehnal's avatar David Sehnal
Browse files

mmCIF schema type

parent 6d842b96
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* @author David Sehnal <david.sehnal@gmail.com> * @author David Sehnal <david.sehnal@gmail.com>
*/ */
import { Field } from '../schema' import { Field, Block } from '../schema'
const pooledStr = Field.pooledStr(); const pooledStr = Field.pooledStr();
const str = Field.str(); const str = Field.str();
...@@ -226,7 +226,7 @@ const atom_site = { ...@@ -226,7 +226,7 @@ const atom_site = {
pdbx_PDB_model_num: int pdbx_PDB_model_num: int
} }
const schema = { const mmCIF = {
entry, entry,
entity, entity,
exptl, exptl,
...@@ -243,4 +243,5 @@ const schema = { ...@@ -243,4 +243,5 @@ const schema = {
pdbx_struct_mod_residue, pdbx_struct_mod_residue,
atom_site atom_site
}; };
export default schema; type mmCIF = Block.Instance<typeof mmCIF>
\ No newline at end of file export default mmCIF;
\ No newline at end of file
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