Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Bartley committed Jan 20, 2021
1 parent 6202872 commit 932d871
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Owlet
Owlet provides a handy interface for ontologies for use in your Python application. It automatically generates symbols for URIs based on the ontology terms themselves. Currently the Sequence Ontology (SO) and Systems Biology Ontology are supported.
# Tyto
Tyto provides a handy interface for ontologies for use in your Python application. It automatically generates symbols for URIs based on the ontology terms themselves. Currently the Sequence Ontology (SO) and Systems Biology Ontology are supported.

For example:
```
>>> from owlet import SO
>>> from tyto import SO
RDFLib Version: 5.0.0
>>> print(SO.promoter)
http://purl.obolibrary.org/obo/SO_0000167
Expand All @@ -14,7 +14,7 @@ These symbols are not hard-coded, rather they are dynamically generated by query

Additionally ontologies have methods that allow for other types of inference.
```
>>> SO.getTermByURI('http://purl.obolibrary.org/obo/SO_0000167')
>>> SO.get_term_by_uri('http://purl.obolibrary.org/obo/SO_0000167')
'promoter'
```

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from setuptools import setup

setup(name='Owlet',
setup(name='tyto',
version='1.0a',
description='Automatically generates Python symbols for ontology terms',
python_requires='>=3.6',
url='https://github.com/SynBioDex/Owlet',
url='https://github.com/SynBioDex/tyto',
author='Bryan Bartley',
author_email='[email protected]',
license='Apache-2',
Expand All @@ -28,8 +28,8 @@
],
# What does your project relate to?
keywords='ontologies',
packages=['Owlet'],
package_data={'Owlet': ['ontologies/*.owl',
packages=['tyto'],
package_data={'tyto': ['ontologies/*.owl',
'ontologies/*.rdf',
'ontologies/*.ttl']},
include_package_data=True,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 932d871

Please sign in to comment.