Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
DOI:
Libraries:
Datasets
pandas
License:
alimotahharynia commited on
Commit
8795a46
·
verified ·
1 Parent(s): 102e74f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -0
README.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - chemistry
9
+ - biology
10
+ - medical
11
+ pretty_name: approved_drug_target
12
+ size_categories:
13
+ - 10K<n<100K
14
+ configs:
15
+ - config_name: approved_drug_target
16
+ data_files:
17
+ - split: train
18
+ path: approved_drug_target.json
19
+ - config_name: uniprot_sequence
20
+ data_files:
21
+ - split: uniprot_seq
22
+ path: uniprotId_sequence_2024_11_01.json
23
+ ---
24
+ # Approved Drug SMILES and Protein Sequence Dataset
25
+
26
+ This dataset provides a curated collection of approved drug Simplified Molecular Input Line Entry System (SMILES) strings and their associated protein sequences. Each small molecule has been approved by at least one regulatory body, ensuring the safety and relevance of the data for computational applications. The dataset includes 1,660 approved small molecules and their 2,093 related protein targets.
27
+
28
+ # Dataset
29
+
30
+ The data comes from the following sources:
31
+
32
+ - DrugBank
33
+ - UniProt
34
+ - ChEMBL
35
+ - ZINC20
36
+
37
+ # Data verification and processing
38
+ A total of 1,710 approved small molecules were retrieved from the DrugBank database, 117 of which were labeled as withdrawn. After assessment by a physician (Ali Motahharynia) and a pharmacist (Mahsa Sheikholeslami), 50 withdrawn drugs were excluded due to safety concerns, resulting in 1,660 approved small molecules. 2,116 protein targets were associated with these drugs, but 27 proteins were missing or unverified in UniProt database. These were manually replaced or verified using UniProt IDs, identical protein names, or Basic Local Alignment Search Tool (BLAST) for alignment matching, ultimately leading to 2,093 verified protein targets. Protein with UniProt ID “Q5JXX5” was deleted from the UniProt database and was therefore excluded from the dataset.
39
+
40
+ # Data structure
41
+ - SMILES: Contains the SMILES strings for each of the approved molecules. These SMILES were retrieved from DrugBank, ChEMBL, and ZINC20 databases.
42
+ - Sequences: Contains protein sequences retrieved from UniProt database.
43
+
44
+ # You can load this dataset with:
45
+ ```python
46
+ from datasets import load_dataset
47
+
48
+ dataset = load_dataset("alimotahharynia/approved_drug_target", "approved_drug_target")
49
+ ```
50
+ You can also download the dataset directly in JSON format.