Ty-Perez commited on
Commit
390fc79
·
verified ·
1 Parent(s): abdd0dc

Upload raw/README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. raw/README.md +65 -0
raw/README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Description of the structural data
2
+
3
+ Unzip the `*.tar.gz` dataset with command `tar -xzvf hiqbind.tar.gz` will get two directories corresponding to to the "small molecule" and "polymer" subset of HiQBind.
4
+
5
+ ```bash
6
+ -- raw_data_hiq_sm/
7
+ -- raw_data_hiq_poly/
8
+ ```
9
+
10
+ In each of the directory, you will see a file structure like this:
11
+ ```bash
12
+ -- 1a69/
13
+ |-- 1a69_FMB_A_240/
14
+ |-- 1a69_FMB_A_240_ligand.pdb
15
+ |-- 1a69_FMB_A_240_protein.pdb
16
+ |-- 1a69_FMB_A_240_protein_hetatm.pdb
17
+ |-- 1a69_FMB_A_240_hetatm.pdb
18
+ |-- 1a69_FMB_A_240_ligand_refined.sdf
19
+ |-- 1a69_FMB_A_240_protein_refined.pdb
20
+ |-- 1a4m_FMB_B_240/
21
+ |-- 1a4m_FMB_C_240/
22
+ -- 1a85/
23
+ ```
24
+
25
+ Description of the naming conventions:
26
+
27
+ + `1a69`: 4-letter PDB ID
28
+ + `FMB`: Name of the ligand. If the ligand is a polymer, it will be format like "ACE-DIP", where "ACE" is the name of the first residue and "DIP" is the name of the last residue.
29
+ + `A`: Ligand chain ID.
30
+ + `240`: Ligand residue number. If the ligand is a polymer, it will be format like "1-3", where "1" is the residue number of the first residue and "3" is the number of the last residue. Note the residue number may contain insertion code, or be a negative integer or zero.
31
+
32
+ Description of the files:
33
+ + `*_ligand.pdb`: ligand structure extracted from the original PDB (not processed)
34
+ + `*_protein.pdb`: protein structure extracted from the original PDB (not processed). A protein is defined as chains within 10 angstrom of the ligand structure.
35
+ + `*_protein_hetatm.pdb`: protein structure with additives (solvents, ions) extracted from the original PDB (not processed). Additives are specified with "HETATM" atoms that are within 4 angstroms of the protein chains.
36
+ + `*_hetatm.pdb`: additives' structure extracted from the original PDB (not processed)
37
+ + `*_ligand_refined.sdf`: refined ligand structures (hydrogen added, correct bond order, better tautomer states/protonataion states) with PDBBind-Opt workflow.
38
+ + `*_protein_refined.pdb`: refined protein structures (hydrogen added, missing atoms/residues added) with PDBBind-Opt workflow.
39
+
40
+
41
+ ## Description of columns in the metadata csv file:
42
+ + `PDBID`: *string*, 4-letter PDB code
43
+ + `Resolution`: *string or float*, resolution of the crystal structure or "NMR" if the structure is resolved by NMR
44
+ + `Year`: *int*, initial deposit year in PDB database
45
+ + `Ligand Name`: *string*, name of the ligand. If the ligand is a polymer, it will be format like "ACE-DIP", where "ACE" is the name of the first residue and "DIP" is the name of the last residue.
46
+ + `Ligand Chain`: *string*, chain of the ligand.
47
+ + `Ligand Residue Number`: *string*, residue number of the ligand. If the ligand is a polymer, it will be format like "1-3", where "1" is the residue number of the first residue and "3" is the number of the last residue. Note the residue number may contain insertion code, or be a negative integer or zero.
48
+ + `Binding Affinity Measurement`: *string*, "kd", "ki" or "ic50". Note in some sources, binding data is labeled to be "Ka" or "Kb", they are converted to Kd using Ka = 1/Kd.
49
+ + `Binding Affinity Sign`: *string*, could be "=", ">=", "<=" or "~".
50
+ + `Binding Affinity Value`: *float*, value of the binding affinity
51
+ + `Binding Affinity Unit`: *string*, coule be "fM", "pM", "nM", "uM", "mM", "M"
52
+ + `Log Binding Affinity`: *float*, binding affinity in log unit
53
+ + `Binding Affinity Source`: *string*, could be "PDBBind", "BindingMOAD", "BindingDB" or "BioLiP"
54
+ + `Binding Affinity Annotation`: *string*, the annotation in the original source.
55
+ + `Protein UniProtID`: *string*, UniProtID of the proteins, seperated by a comma if the ligand bound to more than one chain.
56
+ + `Protein UniProtName`: *string*, Name of the proteins, separated by a comma if the ligand bound to more than one chain.
57
+ + `Ligand SMILES`: *string*, SMILES of the ligand.
58
+ + `Ligand MW`: *float*, Molecular weight of the ligand.
59
+ + `Ligand LogP`: *float*, LogP value of the ligand computed by RDKit.
60
+ + `Ligand TPSA`: *float*, TPSA value of the ligand computed by RDKit.
61
+ + `Ligand NumRotBond`: *int*, Number of rotatable bonds in the ligand.
62
+ + `Ligand NumHeavyAtoms`: *int*, Number of heavy atoms in the ligand.
63
+ + `Ligand NumHDon`: *int*, Number of hydrogen bond donors in the ligand.
64
+ + `Ligand NumHAcc`: *int*, Number of hydrogen bond acceptors in the ligand.
65
+ + `Ligand QED`: *float*, QED value of the ligand computed by RDKit.