django-mogi
Metabolomics organisation with Galaxy and ISA.
For current code and updates, use computational-metabolomics/django-mogi.
API Reference
Setup
Add “mogi” and django application dependencies to your INSTALLED_APPS setting like this (mogi should come before gfiles and galaxy):
INSTALLED_APPS = [ ... 'mogi', 'galaxy', 'gfiles', 'django_tables2', 'django_tables2_column_shifter', 'django_filters', 'bootstrap3', 'django_sb_admin', 'dal', 'dal_select2', ]
Include the URLconf in your project urls.py like this:
url(r'^', include('gfiles.urls')), url('mogi/', include('mogi.urls')), url('galaxy/', include('galaxy.urls')),
Run python manage.py migrate to create the mogi models.
Start the development server and visit http://127.0.0.1:8000/