Skip to content

Commit b0f91f9

Browse files
committed
Merge pull request #689 from ElDeveloper/release-0.0.1
REL: Pre-Alpha release 0.0.1
2 parents a0628e5 + 13d2db9 commit b0f91f9

File tree

4 files changed

+75
-35
lines changed

4 files changed

+75
-35
lines changed

INSTALL.md

+31-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Dependencies
22
------------
33

4-
Qiita is a python package, with support for python 2.7 and 3.2, that depends on the following python libraries (all of them can be installed using pip):
4+
Qiita is a python package, with support for python 2.7, that depends on the following python libraries (all of them can be installed using pip):
55

66
<!--
77
* [pgbouncer](http://pgfoundry.org/projects/pgbouncer)
8-
* [IPython](https://github.com/ipython/ipython)
98
-->
109

10+
* [IPython](https://github.com/ipython/ipython)
1111
* [tornado 3.1.1](http://www.tornadoweb.org/en/stable/)
1212
* [toredis](https://pypi.python.org/pypi/toredis)
1313
* [Psycopg2](http://initd.org/psycopg/download/)
@@ -26,24 +26,45 @@ Qiita is a python package, with support for python 2.7 and 3.2, that depends on
2626
And on the following packages:
2727

2828
* [PostgresSQL 9.3](http://www.postgresql.org/download/)
29-
* [redis 2.8.0](https://pypi.python.org/pypi/redis/)
30-
31-
<!--
3229
* [redis-server](http://redis.io)
33-
-->
3430

3531
Install
3632
-------
3733

3834
Once you have [PostgresSQL](http://www.postgresql.org/download/) and [redis](https://pypi.python.org/pypi/redis/) installed (follow the instruction on their web site), simply run these commands to install qiita and configure the demo environment, replacing $QIITA_DIR for the path where qiita is installed
39-
(note that if you are not using Ubuntu you might need to follow the instructions in the next section):
35+
(note that if you are not using Ubuntu you might need to follow the instructions in the next section).
36+
37+
```bash
38+
pip install numpy
39+
pip install cogent burrito qcli emperor pyzmq
40+
pip install https://github.com/biocore/qiime/archive/master.zip --no-deps
41+
pip install qiita-spots
42+
```
43+
44+
After these commands are executed, you will need (1) download a [sample Qiita configuration file](https://raw.githubusercontent.com/biocore/qiita/a0628e54aef85b1a064d40d57ca981aaf082a120/qiita_core/support_files/config_test.txt), (2) set the `QIITA_CONFIG_FP` environment variable and (3) proceed to initialize your environment:
4045

4146
```bash
42-
echo "export QIITA_CONFIG_FP=$QIITA_DIR/qiita_core/support_files/config_demo.txt" >> ~/.bashrc
47+
# (1) use curl -O if using OS X
48+
wget https://github.com/biocore/qiita/blob/a0628e54aef85b1a064d40d57ca981aaf082a120/qiita_core/support_files/config_test.txt
49+
# (2) set the enviroment variable in your .bashrc
50+
echo "export QIITA_CONFIG_FP=config_test.txt" >> ~/.bashrc
4351
source ~/.bashrc
44-
pip install https://github.com/biocore/qiita/archive/master.zip
45-
qiita_env make_env --env demo
52+
# (3) start a test environment
53+
qiita_env make --no-load-ontologies
4654
```
55+
56+
Finally you need to start the server:
57+
58+
```bash
59+
# IPython takes a while to get initialized so wait 30 seconds
60+
qiita_env start_cluster demo test reserved && sleep 30
61+
qiita webserver start
62+
63+
```
64+
65+
If all the above commands executed correctly, you should be able to go to http://localhost:8888 in your browser, to login use `[email protected]` and `password` as the credentials.
66+
67+
4768
## If using other operating systems that are not Ubuntu
4869

4970
You will need to add the postgres user to the database. In order to do this, run:

qiita_pet/webserver.py

-16
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
# login code modified from https://gist.github.com/guillaumevincent/4771570
22
import tornado.auth
33
import tornado.escape
4-
import tornado.httpserver
5-
import tornado.ioloop
6-
import tornado.options
74
import tornado.web
85
import tornado.websocket
9-
from tornado.options import define, options
106
from os.path import dirname, join
117
from base64 import b64encode
128
from uuid import uuid4
@@ -35,7 +31,6 @@
3531
from qiita_pet.handlers.download import DownloadHandler
3632
from qiita_db.util import get_mountpoint
3733

38-
define("port", default=8888, help="run on the given port", type=int)
3934

4035
DIRNAME = dirname(__file__)
4136
STATIC_PATH = join(DIRNAME, "static")
@@ -96,14 +91,3 @@ def __init__(self):
9691
"login_url": "/auth/login/"
9792
}
9893
tornado.web.Application.__init__(self, handlers, **settings)
99-
100-
101-
def main():
102-
tornado.options.parse_command_line()
103-
http_server = tornado.httpserver.HTTPServer(Application())
104-
http_server.listen(options.port)
105-
print("Tornado started on port", options.port)
106-
tornado.ioloop.IOLoop.instance().start()
107-
108-
if __name__ == "__main__":
109-
main()

scripts/qiita

+26
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
# -----------------------------------------------------------------------------
1010

1111
import click
12+
import tornado.httpserver
13+
import tornado.ioloop
1214
from psycopg2 import OperationalError
1315

1416
from qiita_db.util import (get_filepath_types, get_filetypes,
@@ -58,6 +60,11 @@ def maintenance():
5860
pass
5961

6062

63+
@qiita.group()
64+
def webserver():
65+
pass
66+
67+
6168
# #############################################################################
6269
# DB COMMANDS
6370
# #############################################################################
@@ -244,5 +251,24 @@ def status():
244251
print r_server.ttl('maintenance'), "seconds remaining"
245252

246253

254+
# #############################################################################
255+
# WEBSERVER COMMANDS
256+
# #############################################################################
257+
258+
@webserver.command()
259+
@click.option('--port', required=False, type=int, help='Port where the '
260+
'webserver will start', default=8888)
261+
def start(port):
262+
# in order to use this command you need to have an IPython cluster running,
263+
# for now this makes it so that you can use other sub-commands without
264+
# having to do that. The solution will (perhaps) be to move this subcommand
265+
# into an entirely different script.
266+
from qiita_pet.webserver import Application
267+
268+
http_server = tornado.httpserver.HTTPServer(Application())
269+
http_server.listen(port)
270+
print("Qiita started on port", port)
271+
tornado.ioloop.IOLoop.instance().start()
272+
247273
if __name__ == '__main__':
248274
qiita()

setup.py

+18-9
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,43 @@
88
# The full license is in the file LICENSE, distributed with this software.
99
# -----------------------------------------------------------------------------
1010

11-
__version__ = "0.1.0-dev"
11+
__version__ = "0.0.1"
1212

1313
from setuptools import setup
1414
from glob import glob
1515

1616

1717
classes = """
18-
Development Status :: 4 - Beta
18+
Development Status :: 2 - Pre-Alpha
1919
License :: OSI Approved :: BSD License
2020
Topic :: Scientific/Engineering :: Bio-Informatics
2121
Topic :: Software Development :: Libraries :: Application Frameworks
2222
Topic :: Software Development :: Libraries :: Python Modules
2323
Programming Language :: Python
2424
Programming Language :: Python :: 2.7
2525
Programming Language :: Python :: Implementation :: CPython
26-
Operating System :: OS Independent
2726
Operating System :: POSIX :: Linux
2827
Operating System :: MacOS :: MacOS X
2928
"""
3029

31-
long_description = """Qiita is a databasing and UI effort for QIIME"""
30+
long_description = """Qiita: Spot Patterns"""
3231

3332
classifiers = [s.strip() for s in classes.split('\n') if s]
3433

35-
setup(name='qiita',
34+
setup(name='qiita-spots',
3635
version=__version__,
3736
long_description=long_description,
3837
license="BSD",
39-
description='Qiita',
38+
description='Qiita: Spot Patterns',
4039
author="Qiita development team",
4140
author_email="[email protected]",
42-
url='http://biocore.github.io/qiita',
41+
url='https://github.com/biocore/qiita',
4342
test_suite='nose.collector',
4443
packages=['qiita_core',
4544
'qiita_db',
4645
'qiita_pet',
47-
'qiita_ware',
46+
'qiita_pet/handlers',
47+
'qiita_ware'
4848
],
4949
package_data={'qiita_core': ['support_files/config_test.txt'],
5050
'qiita_db': ['support_files/*.sql',
@@ -59,7 +59,16 @@
5959
'support_files/test_data/job/2_test_folder/*',
6060
'support_files/test_data/uploads/1/*',
6161
'support_files/test_data/templates/*',
62-
'support_files/work_data/*']},
62+
'support_files/work_data/*'],
63+
'qiita_pet': ['static/css/*.css', 'static/img/*.png',
64+
'static/img/*.gif', 'static/img/*.ico',
65+
'static/js/*.js', 'static/vendor/css/*.css',
66+
'static/vendor/css/images/*.png',
67+
'static/vendor/fonts/glyphicons*.*',
68+
'static/vendor/images/*.png',
69+
'static/vendor/js/*.js',
70+
'results/admin/jobname/*.html',
71+
'templates/*.html']},
6372
scripts=glob('scripts/*'),
6473
extras_require={'test': ["nose >= 0.10.1", "pep8", 'mock'],
6574
'doc': ["Sphinx >= 1.2.2", "sphinx-bootstrap-theme"]},

0 commit comments

Comments
 (0)