We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e90185 commit 00722e6Copy full SHA for 00722e6
1 file changed
README.md
@@ -10,6 +10,22 @@ package index (PyPI) and can be installed via `pip`, e.g.:
10
```bash
11
pip install malariagen-data
12
```
13
+## Quick Start
14
+
15
+Once installed, you can begin accessing MalariaGEN datasets directly
16
+from Python.
17
18
+For example, to work with the Pf8 dataset:
19
20
+```python
21
+import malariagen_data
22
23
+# Instantiate dataset
24
+pf8 = malariagen_data.Pf8()
25
26
+# Load sample metadata
27
+df = pf8.sample_metadata()
28
+print(df.head())
29
30
## Documentation
31
0 commit comments