kangxiaojiang commited on
Commit
ca464e5
Β·
verified Β·
1 Parent(s): 32f3841

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -12
README.md CHANGED
@@ -13,24 +13,31 @@ size_categories:
13
  - 1K<n<10K
14
  ---
15
 
16
- 🎯 Dataset Summary
17
 
18
- The Therapeutic Targets & Genomic Loci Database is a curated set of 1,000 biological targets bridging genomics and pharmacology. Each record is mapped to standard genomic identifiers (NCBI Gene ID, Ensembl Gene ID) and precise chromosomal locations, supporting target identification workflows, multi-omics integration, and cross-species translational research.
19
 
20
- πŸš€ Key Features
21
 
22
- β€’
23
- Standardized Genomic IDs: Cross-referenced with ncbi_gene_id and ensembl_gene_id.
 
24
 
25
- β€’
26
- Precise Localization: Includes chromosomal_location, locus_type, and locus_group for spatial genomic analysis.
27
 
28
- β€’
29
- Organism Specificity: Tracks organisms associated with each target for cross-species translational research.
30
 
31
- πŸ’» Quick Start & MCP Integration
32
-
33
- Empower your bioinformatics Agents with real-time target resolution using our Bioinformatics Target MCP Tool on GitHub.
 
 
 
 
 
 
 
34
 
35
  ## πŸ”— Resources
36
  - **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)
 
13
  - 1K<n<10K
14
  ---
15
 
16
+ 🎯 **Dataset Summary**
17
 
18
+ A drug target reference database covering 2,000 biological targets with cross-database identifier mapping and drug association counts. Designed for target-centric drug discovery and multi-omics integration.
19
 
20
+ **πŸš€ Key Features**
21
 
22
+ - **Cross-Database IDs:** Each target links UniProt, NCBI Gene ID, Ensembl Gene ID, and RefSeq accessions (nucleotide and protein).
23
+ - **Multilingual Names & Aliases:** `target_name` and `alias` support both English gene symbols and Chinese nomenclature.
24
+ - **Drug Count:** `drug_count` provides a quick measure of target druggability based on associated compounds.
25
 
26
+ **πŸ’» Quick Start & MCP Integration**
 
27
 
28
+ ```python
29
+ from datasets import load_dataset
30
 
31
+ dataset = load_dataset("your-org/drug-targets", split="train")
32
+ record = dataset[0]
33
+ en_name = next(n["name"] for n in record["target_name"] if n["lang"] == "EN")
34
+ print(en_name)
35
+ # Output: 'solute carrier family 37 member 4'
36
+ print(record["uniprot_id"])
37
+ # Output: ['O43826']
38
+ print(record["drug_count"])
39
+ # Output: 1
40
+ ```
41
 
42
  ## πŸ”— Resources
43
  - **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)