You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**OrgDb** provides an interface to access and query **Organism Database (OrgDb)** SQLite files in Python. It mirrors functionality from the R/Bioconductor `AnnotationDbi` package, enabling seamless integration of organism-wide gene annotation into Python workflows.
7
7
8
-
A longer description of your project goes here...
8
+
> [!NOTE]
9
+
>
10
+
> If you are looking to access TxDb databases, check out the [txdb package](https://www.github.com/biocpy/txdb).
9
11
10
12
## Install
11
13
@@ -15,6 +17,107 @@ To get started, install the package from [PyPI](https://pypi.org/project/orgdb/)
15
17
pip install orgdb
16
18
```
17
19
20
+
## Usage
21
+
22
+
### Using OrgDbRegistry
23
+
24
+
The registry download the AnnotationHub's metadata sqlite file and filters for all available OrgDb databases. You can fetch standard organism databases via the registry (backed by AnnotationHub).
25
+
26
+
```py
27
+
from orgdb import OrgDbRegistry
28
+
29
+
# Initialize registry and list available organisms
Copy file name to clipboardExpand all lines: docs/index.md
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,14 @@
1
1
# orgdb
2
2
3
-
Access OrgDB annotations
3
+
**OrgDb** provides an interface to access and query **Organism Database (OrgDb)** SQLite files in Python. It mirrors functionality from the R/Bioconductor `AnnotationDbi` package, enabling seamless integration of organism-wide gene annotation into Python workflows.
4
4
5
+
## Install
5
6
6
-
## Note
7
-
8
-
> This is the main page of your project's [Sphinx] documentation. It is
9
-
> formatted in [Markdown]. Add additional pages by creating md-files in
10
-
> `docs` or rst-files (formatted in [reStructuredText]) and adding links to
11
-
> them in the `Contents` section below.
12
-
>
13
-
> Please check [Sphinx] and [MyST] for more information
14
-
> about how to document your project and how to configure your preferences.
7
+
To get started, install the package from [PyPI](https://pypi.org/project/orgdb/)
0 commit comments