Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- feature-extraction
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- biology
|
| 9 |
+
- siRNA
|
| 10 |
+
- oligonucleotide-therapeutics
|
| 11 |
+
- chemical-modification
|
| 12 |
+
- sequence-modeling
|
| 13 |
+
- patent
|
| 14 |
+
pretty_name: Patent-linked modified siRNA sequences
|
| 15 |
+
size_categories:
|
| 16 |
+
- 1M<n<10M
|
| 17 |
+
---
|
| 18 |
+
🧬 **Dataset Summary**
|
| 19 |
+
|
| 20 |
+
Patent-linked nucleotide sequence records focused RNAi therapeutics patent portfolio. Each record pairs a raw nucleotide sequence with its source patent number, publication date, and global patent family coverage.
|
| 21 |
+
|
| 22 |
+
**🚀 Key Features**
|
| 23 |
+
|
| 24 |
+
- **Patent Linkage:** Each sequence is tied to a patent number (`pn`) and publication date (`pbdt`), enabling sequence-to-IP traceability.
|
| 25 |
+
- **Global Family Coverage:** `family_country` lists all jurisdictions in the patent family (e.g., US, EP, CN, JP, WO).
|
| 26 |
+
- **Patent Status:** `status` field tracks the current patent lifecycle state.
|
| 27 |
+
- **Modification Tracking:** `modified_info` captures amendment history where available (~8.6% of records).
|
| 28 |
+
|
| 29 |
+
**💻 Quick Start & MCP Integration**
|
| 30 |
+
|
| 31 |
+
```python
|
| 32 |
+
from datasets import load_dataset
|
| 33 |
+
|
| 34 |
+
dataset = load_dataset("your-org/alnylam-sequences", split="train")
|
| 35 |
+
print(dataset[0]["sequence"])
|
| 36 |
+
# Output: 'atcacacgcacacacaaaagaag'
|
| 37 |
+
print(dataset[0]["pn"])
|
| 38 |
+
# Output: 'EP4416284A1'
|
| 39 |
+
print(dataset[0]["family_country"])
|
| 40 |
+
# Output: ['JP', 'NZ', 'EA', 'SG', 'CN', 'MX', 'AU', 'IN', 'US', 'EP', 'WO', 'HK', 'IL', 'ZA', 'CA', 'KR']
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
## 🔗 Resources
|
| 46 |
+
- **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)
|
| 47 |
+
- **PatSnap Life Sciences**: [patsnap.com/solutions/life-sciences](https://www.patsnap.com/solutions/life-sciences/)
|
| 48 |
+
- **GitHub**: [github.com/patsnap](https://github.com/patsnap)
|