django-galaxy
Django interfacing with Galaxy. Backend using the bioblend API.
Galaxy is a web based workflow platform that can be used to perform bioinformatics in a reproducible and sharable environment.
For current code and updates, use computational-metabolomics/django-galaxy.
API Reference
Setup
Add “galaxy” and django application dependencies to your INSTALLED_APPS setting like this (galaxy should come before gfiles):
INSTALLED_APPS = [ ... 'galaxy', 'gfiles', 'django_tables2', 'bootstrap3', 'django_tables2_column_shifter', 'django_sb_admin', 'django_filter' ]
Include the polls URLconf in your project urls.py like this:
url(r'^', include('gfiles.urls')), path('galaxy/', include('galaxy.urls')),
Run python manage.py migrate to create the models.
Start the development server and visit http://127.0.0.1:8000