Upload 2 files
Browse files- README.md +22 -0
- requirements.txt +4 -0
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: RCSB Protein Data Explorer
|
| 3 |
+
emoji: 🧬
|
| 4 |
+
colorFrom: pink
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: 1.32.0
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# 🧬 RCSB Protein Data Explorer
|
| 13 |
+
|
| 14 |
+
This Streamlit app visualizes real-time structural biology data from the RCSB Protein Data Bank API. Features include:
|
| 15 |
+
|
| 16 |
+
- Yearly trends in protein structure submissions
|
| 17 |
+
- Resolution vs Experimental Method scatter plots
|
| 18 |
+
- Institution-wise contribution analysis
|
| 19 |
+
- Interactive data filtering and chart selection
|
| 20 |
+
- Live updates with a Refresh button
|
| 21 |
+
|
| 22 |
+
Deployed on Hugging Face Spaces.
|
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit
|
| 2 |
+
pandas
|
| 3 |
+
altair
|
| 4 |
+
requests
|