Skip to content

Commit

Permalink
DAOTHER-8808 include pdbx_initial_refinment_model in all reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezra Peisach committed Mar 29, 2024
1 parent b766e3d commit cc9cdaf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def __setup(self):
# ('pdbx_depui_status_flags', 'DepUI Flags', 'row-wise'),
("pdbx_SG_project", "Structural genomics", "row-wise"),
("pdbx_database_related", "Related entries", "row-wise"),
("pdbx_initial_refinement_model", "Starting models", "row-wise"),
("pdbx_contact_author", "Contact authors", "row-wise"),
# ('citation','Primary citation','column-wise'),
("pdbx_validate_close_contact", "Close contacts", "row-wise"),
Expand Down
13 changes: 12 additions & 1 deletion wwpdb/apps/ann_tasks_v2/report/styles/ModelReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class PdbxReportCategoryStyle(PdbxCategoryStyleBase):
("pdbx_depui_status_flags", "table"),
("pdbx_database_proc", "table"),
("pdbx_database_related", "table"),
("pdbx_initial_refinement_model", "table"),
("pdbx_related_exp_data_set", "table"),
("database_PDB_rev", "table"),
("pdbx_database_PDB_obs_spr", "table"),
Expand Down Expand Up @@ -288,7 +289,9 @@ class PdbxReportCategoryStyle(PdbxCategoryStyleBase):
("_pdbx_database_PDB_obs_spr.pdb_id", "%s", "str", ""),
("_pdbx_database_PDB_obs_spr.replace_pdb_id", "%s", "str", ""),
],
"pdbx_database_PDB_remark": [("_pdbx_database_PDB_remark.id", "%s", "str", ""), ("_pdbx_database_PDB_remark.text", "%s", "str", "")],
"pdbx_database_PDB_remark": [
("_pdbx_database_PDB_remark.id", "%s", "str", ""),
("_pdbx_database_PDB_remark.text", "%s", "str", "")],
"pdbx_entity_instance_feature": [
("_pdbx_entity_instance_feature.ordinal", "%s", "str", ""),
("_pdbx_entity_instance_feature.comp_id", "%s", "str", ""),
Expand All @@ -300,6 +303,14 @@ class PdbxReportCategoryStyle(PdbxCategoryStyleBase):
("_pdbx_entity_instance_feature.details", "%s", "str", ""),
("_pdbx_entity_instance_feature.seq_num", "%s", "str", ""),
],
"pdbx_initial_refinement_model": [
("_pdbx_initial_refinement_model.id", "%s", "str", ""),
("_pdbx_initial_refinement_model.type", "%s", "str", ""),
("_pdbx_initial_refinement_model.source_name", "%s", "str", ""),
("_pdbx_initial_refinement_model.accession_code", "%s", "str", ""),
("_pdbx_initial_refinement_model.details", "%s", "str", ""),
("_pdbx_initial_refinement_model.entity_id_list", "%s", "str", ""),
],
"struct_ref": [
("_struct_ref.id", "%s", "str", ""),
("_struct_ref.entity_id", "%s", "str", ""),
Expand Down

0 comments on commit cc9cdaf

Please sign in to comment.