Datasets:
Tasks:
Feature Extraction
Formats:
csv
Languages:
English
Size:
< 1K
Tags:
Structural biology
Bioinformatics
Machine learning
Conformation
Conformational state
Monomeric
License:
Readme populated
Browse files
README.md
CHANGED
@@ -1,3 +1,62 @@
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
size_categories:
|
6 |
+
- 10K<n<100K
|
7 |
---
|
8 |
+
|
9 |
+
## Schema description:
|
10 |
+
The manually curated dataset of open-closed monomers is included here as `benchmarking_monomeric_open_closed_conformers.csv`.
|
11 |
+
|
12 |
+
Column descriptions:
|
13 |
+
|
14 |
+
## Schema description:
|
15 |
+
The manually curated dataset of open-closed monomers is included here as `benchmarking_monomeric_open_closed_conformers.csv`.
|
16 |
+
|
17 |
+
Column descriptions:
|
18 |
+
|
19 |
+
- **`UNP_ACC`** | UniProt accession code
|
20 |
+
- **`UNP_START`** | Start of UniProt sequence for given PDBe entries
|
21 |
+
- **`UNP_END`** | End of UniProt sequence for given PDBe entries
|
22 |
+
- **`PDBe_ID`** | Protein Data Bank code
|
23 |
+
- **`CHAIN_ID`** | Author declared chain ID (`char`)
|
24 |
+
- **`label_asym_id`** | Programmatically assigned chain ID (`char`)
|
25 |
+
- **`CONFORMER_ID`** | Unique code for PDBe entries with distinct conformation, corresponding to a given UniProt accession
|
26 |
+
- **`CONFORMER_DESCR`** | Short description of conformation, based on depositor's assessment of the protein/conformation
|
27 |
+
- **`LIT_CONFIRMED`** | True/false value based on whether a publication (scientific literature) was available for manually curating clusters. NB: Clusters with 0 in this field should be used with caution.
|
28 |
+
- **`ALT_CONFORMER_ID`** | Where the publication for a structure is currently outstanding, an executive decision on the conformation classification is made. Where the literature is not explicit on the features of a given conformation, the second most suitable `CONFORMER_ID` is provided in this column. Blank cells have no other likely conformation assignmnt and are therefore the same as in `CONFORMER_ID`.
|
29 |
+
- **`ALT_CONFORMER_DESCR`** | Description for conformation in alternative conformation ID.
|
30 |
+
|
31 |
+
## Curation process
|
32 |
+
As of 09 Mar 2022, a manually curated dataset of monomeric protein conformations has been collated, containing 'open'-'closed' pairs as well as intermediary states defined by the authors of the entry.
|
33 |
+
|
34 |
+
1. The PDBe was queried, through its Oracle DB, to find PDBe entries with 100 % sequence identity for a UniProt segment in both 'open' and 'closed' conformations, as stated in the entry's `TITLE` field. The query used:
|
35 |
+
```
|
36 |
+
select b.accession, b.unp_start, b.unp_end, a.id, a.title, d.id, d.title
|
37 |
+
from entry a, unp_entity b, unp_entity c, entry d, pdb_assembly e
|
38 |
+
where a.title like ‘%open%’ and d.title like ‘%close%’
|
39 |
+
and a.id = b.entry_id and d.id = c.entry_id and a.id != d.id
|
40 |
+
and b.accession = c.accession
|
41 |
+
and b.unp_start = c.unp_start
|
42 |
+
and b.unp_end = c.unp_end
|
43 |
+
and a.id = e.entry_id
|
44 |
+
and e.type = ‘homo’
|
45 |
+
and e.name = ‘monomer’
|
46 |
+
```
|
47 |
+
was written by Dr Sameer Velankar.
|
48 |
+
|
49 |
+
2. These results were cleaned to remove entries with 'open' or 'close' substrings in their `TITLE` fields that did not refer to conformation. The 'open' substring often appeared in ligand names in the entries' `TITLE` field, such as in *dichlorido(1,3-dimethylbenzimidaz ol-2-ylidene)(eta5-pentamethylcycl**open**tadienyl)rhodium(III)* and 'close' in terms like *dis**close**s*.
|
50 |
+
|
51 |
+
3. All remaining entries were then manually curated by investigating each PDBe entry's corresponding publication, where available.
|
52 |
+
1. Additional PDBe entries submitted by the authors, which were missed in the original search due to a lack of 'open' or 'close' substrings in their `TITLE` field but stated as fitting one of the states in the publication, were added.
|
53 |
+
2. For some UniProt accessions, intermediary conformations were reported by the authors and these were noted in the dataset under the `CONFORMER_DESCR` column.
|
54 |
+
3. Entries deposited in monomeric form but solved as a multimeric complex were also removed.
|
55 |
+
|
56 |
+
4. PDBe entries, now clustered by author-stated conformation, were cross-referenced against the PDBe-KB's existing clustering algorithm (available on the [Aggregate Views of Proteins](https://www.ebi.ac.uk/pdbe/pdbe-kb/protein) page) to assess current conformer clustering success. These results are currently awaiting publication.
|
57 |
+
|
58 |
+
### Curation process outline
|
59 |
+
<img src="http://ftp.ebi.ac.uk/pub/databases/pdbe-kb/benchmarking/distinct-monomer-conformers/work_progress_flowdiagram_200pc.png" alt="Curation flow diagram">
|
60 |
+
|
61 |
+
### Dataset summary
|
62 |
+
<img src="http://ftp.ebi.ac.uk/pub/databases/pdbe-kb/benchmarking/distinct-monomer-conformers/summary_data_visualisation.png" alt="Benchmark dataset summary graphs">
|