-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
243 additions
and
143 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 was deleted.
Oops, something went wrong.
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,27 @@ | ||
lorax was tested under Anaconda Python 3.6. | ||
|
||
lorax requires some packages that are in the bioconda channel, so before | ||
installing lorax, the following channels must be added: | ||
|
||
conda config --add channels conda-forge | ||
conda config --add channels defaults | ||
conda config --add channels r | ||
conda config --add channels bioconda | ||
|
||
After the channels are configured, the following dependencies should be | ||
added. I prefer adding them to the root installation, but you may prefer | ||
to add them to the virtual environment to be constructed later: | ||
|
||
conda install biopython redis redis-py hmmer gcc libgcc raxml | ||
|
||
Next, it is highly recommended that you create a virtual environment for | ||
lorax to run in. lorax depends on a version of setuptools that is | ||
currently much higher than the version required by anaconda, so you may | ||
break other packages if you install lorax in a shared environment: | ||
|
||
conda create --name loraxenv biopython click croniter flask \ | ||
gcc libgcc raxml redis redis-py itsdangerous jinja2 markupsafe \ | ||
python-dateutil rq six werkzeug | ||
|
||
After installing these packages then, "pip install lorax" should get the | ||
remaining packages directly from pypi. |
File renamed without changes.
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,7 +1,8 @@ | ||
include *.txt | ||
include INSTALL.* | ||
recursive-include lorax/instance * | ||
recursive-include lorax/test * | ||
recursive-include lorax/static * | ||
recursive-include lorax/templates * | ||
recursive-include lorax/fasttree * | ||
prune lorax/test/data | ||
prune lorax/test/logs |
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,2 +1,2 @@ | ||
# coding: utf-8 | ||
version = '0.93.3' | ||
version = '0.93.5' |
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,5 +1,6 @@ | ||
# requirements.in | ||
Flask_RQ2 | ||
packaging | ||
setuptools>30.3.0 | ||
Flask_RQ2[cli] | ||
biopython | ||
rq-dashboard | ||
gunicorn |
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,8 +1,73 @@ | ||
[metadata] | ||
description-file = README.rst | ||
name = lorax | ||
provides = lorax | ||
version = attr:lorax.version.version | ||
url = http://github.com/ncgr/lorax | ||
description = Server for phylogenetic tree generation and extension | ||
author = Joel Berendzen | ||
author_email = [email protected] | ||
maintainer = Joel Berendzen | ||
maintainer_email = [email protected] | ||
long_description = file:README.rst | ||
description-file = | ||
README.rst | ||
CHANGELOG.rst | ||
keywords = | ||
science | ||
biology | ||
bioinformatics | ||
genomics | ||
phylogeny | ||
genes | ||
gene families | ||
multiple sequence alignment | ||
phylogenetic trees | ||
license = BSD 3-Clause License | ||
license_file = LICENSE.txt | ||
platforms = any | ||
classifiers = | ||
Development Status :: 4 - Beta, | ||
Environment :: Console, | ||
Framework :: Flask, | ||
Intended Audience :: Science/Research, | ||
License :: OSI Approved :: BSD License, | ||
Operating System :: OS Independent, | ||
Programming Language :: Python :: 3.4, | ||
Programming Language :: Python :: 3.5, | ||
Programming Language :: Python :: 3.6, | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
|
||
[bdist-wheel] | ||
[options] | ||
zip_safe = False | ||
include_package_data = True | ||
packages = lorax | ||
install_requires = | ||
Flask-RQ2[cli] | ||
biopython | ||
rq_dashboard | ||
|
||
[options.package_data] | ||
* = | ||
*.txt | ||
*.rst | ||
*.html | ||
*.c | ||
*.faa | ||
*.hmm | ||
*.sh | ||
*.css | ||
*.js | ||
favicon.ico | ||
|
||
[options.packages.find] | ||
exclude = | ||
lorax.test.data | ||
lorax.test.logs | ||
|
||
[bdist_wheel] | ||
universal = 0 | ||
|
||
[wheel] | ||
universal = 0 | ||
|
||
|
Oops, something went wrong.