-
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.
Faster processing of GENCODE datasets.
- Loading branch information
Showing
8 changed files
with
58 additions
and
49 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
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,14 +1,13 @@ | ||
# Dryad | ||
|
||
Dryad is a Python module for representing and predicting -omic features. | ||
|
||
The following submodules are available in Dryad: | ||
|
||
### `dryadic.features` ### | ||
Loading -omic datasets and representing them in formats accessible to machine | ||
learning methods. | ||
|
||
### `dryadic.learning` ### | ||
Algorithms and pipelines for using -omic datasets to predict -omic and | ||
phenotypic features. | ||
# Dryad # | ||
`dryad` is a Python module for making predictions using -omic data. It | ||
consists of two main parts: `dryadic.features`, containing tools for loading | ||
-omic datasets and representing them in formats accessible to machine learning | ||
methods, and `dryadic.learning`, which incorporates these tools into pipelines | ||
designed to facilitate drawing biological insights from training prediction | ||
tasks on -omic data. | ||
|
||
## Installation ## | ||
The easiest way to install `dryad` is via PyPI: | ||
|
||
```pip install -i https://test.pypi.org/simple/ dryad==0.4.2``` | ||
|
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
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import setuptools | ||
|
||
setuptools.setup(name='dryad', | ||
version='0.4.2a3', | ||
version='0.4.2', | ||
description='Prediction of Cancer Phenotypes Using Mutation Trees', | ||
author='Michal Radoslaw Grzadkowski', | ||
author_email='[email protected]', | ||
packages=setuptools.find_packages( | ||
exclude=["dryadic.tests.*", "dryadic.tests"]), | ||
url = 'https://github.com/ohsu-comp-bio/dryad', | ||
download_url = ('https://github.com/ohsu-comp-bio/' | ||
'dryad/archive/v0.4.2a3.tar.gz'), | ||
'dryad/archive/v0.4.2.tar.gz'), | ||
install_requires=[ | ||
'numpy>=1.16', | ||
'pandas>=0.25', | ||
|