-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from NatalieThurlby/dev
Dev
- Loading branch information
Showing
14 changed files
with
1,009 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ tests/data/ | |
__pycache__/ | ||
*.egg-info/ | ||
.idea/ | ||
docs/contents/api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# API Reference | ||
|
||
```{admonition} What's an API? | ||
API stands for "Application Programming Interface". Ontolopy's API Reference describes everything you needs to know about Ontolopy to know how to use it. It describes all public objects, modules, and functions. | ||
``` | ||
|
||
## `ontolopy.obo` | ||
|
||
The `ontolopy.obo` module contains code for creating and working with the `Obo` class: objects that represent ontologies. | ||
|
||
```{eval-rst} | ||
.. currentmodule:: ontolopy.obo | ||
.. autosummary:: | ||
:toctree: api/ | ||
Obo | ||
Obo.merge | ||
download_obo | ||
load_obo | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ contents/quickstart | |
contents/changelog | ||
contents/roadmap | ||
contents/develop | ||
contents/reference | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
from .obo import Obo, validate_term, get_obo | ||
from .relations import Relations | ||
from .obo import Obo, download_obo, load_obo | ||
from .relations import Relations, relation_path_to_text | ||
from .uberon import Uberon, uberon_from_obo |
Oops, something went wrong.