biomapper 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- biomapper/__init__.py +3 -0
- biomapper/core/__init__.py +1 -0
- biomapper/mapping/__init__.py +1 -0
- biomapper/mapping/dev_uniprot.ipynb +1544 -0
- biomapper/schemas/__init__.py +1 -0
- biomapper/standardization/__init__.py +1 -0
- biomapper/standardization/ramp_client.py +253 -0
- biomapper/standardization/tutorial.ipynb +321 -0
- biomapper/utils/__init__.py +1 -0
- biomapper-0.1.0.dist-info/LICENSE +201 -0
- biomapper-0.1.0.dist-info/METADATA +211 -0
- biomapper-0.1.0.dist-info/RECORD +14 -0
- biomapper-0.1.0.dist-info/WHEEL +4 -0
- biomapper-0.1.0.dist-info/entry_points.txt +3 -0
biomapper/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Core functionality and base classes for the BioMapper package."""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Mapping modules for biological identifier translation and ontology mapping."""
|