From c3a586adce69a619329d43c69b2a97678fc2d936 Mon Sep 17 00:00:00 2001 From: Alexander Rose <alex.rose@rcsb.org> Date: Fri, 17 Aug 2018 13:27:37 -0700 Subject: [PATCH] removed chem_comp.pdbx_ordinal from big chemCompBond table --- src/apps/chem-comp-bond/create-table.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/apps/chem-comp-bond/create-table.ts b/src/apps/chem-comp-bond/create-table.ts index 8f5e0030f..c30bc04b2 100644 --- a/src/apps/chem-comp-bond/create-table.ts +++ b/src/apps/chem-comp-bond/create-table.ts @@ -75,7 +75,12 @@ type CCB = Table<CCD_Schema['chem_comp_bond']> type CCA = Table<CCD_Schema['chem_comp_atom']> const ChemCompBond_Schema = { - ...CCD_Schema['chem_comp_bond'], + comp_id: CCD_Schema['chem_comp_bond'].comp_id, + atom_id_1: CCD_Schema['chem_comp_bond'].atom_id_1, + atom_id_2: CCD_Schema['chem_comp_bond'].atom_id_2, + value_order: CCD_Schema['chem_comp_bond'].value_order, + pdbx_aromatic_flag: CCD_Schema['chem_comp_bond'].pdbx_aromatic_flag, + pdbx_stereo_config: CCD_Schema['chem_comp_bond'].pdbx_stereo_config, molstar_protonation_variant: Column.Schema.Str() } -- GitLab