Metadata-Version: 2.0
Name: django-mbrowse
Version: 0.0.1
Summary: Browse and View Metabolomic datasets
Home-page: https://mogi.readthedocs.io
Author: Thomas N lawson
Author-email: thomas.nigel.lawson@gmail.com
License: GPLv3
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: bioservices
Requires-Dist: django-autocomplete-light
Requires-Dist: django-bulk-update
Requires-Dist: django-gfiles
Requires-Dist: django-rest-framework
Requires-Dist: django (==1.11)
Requires-Dist: numpy
Requires-Dist: plotly
Requires-Dist: pubchempy
Requires-Dist: scipy
Requires-Dist: seaborn

=====
mbrowse
=====

|Build Status (Travis)| |Py versions|

Browse, view and search metabolomic datasets

Further documentation available on `ReadTheDocs <https://mogi.readthedocs.io/en/latest/>`__

Quick start
-----------

1. Add "mbrowse" and django application dependencies to your INSTALLED_APPS setting like this (mbrowse should come before gfiles)::

    INSTALLED_APPS = [
        ...
        'mbrowse',
        'gfiles',

        'django_tables2',
        'django_tables2_column_shifter',
        'django_filters',
        'bootstrap3',
        'django_sb_admin',
        'dal',
        'dal_select2',
    ]

2. Include the polls URLconf in your project urls.py like this::

    url(r'^', include('gfiles.urls')),
    url('mbrowse/', include('mbrowse.urls')),

3. Run `python manage.py migrate` to create the mbrowse models.

4. Start the development server and visit http://127.0.0.1:8000/mbrowse/general_summary

5. Register http://127.0.0.1:8000/register/ and login http://127.0.0.1:8000/login/

6. Upload metabolomics mzML files (can also be done with djang-misa and django-mogi) http://127.0.0.1:8000/mbrowse/upload_mfiles_batch/

7. Upload LC-MS data set (can be done through galaxy, see django-mogi) http://127.0.0.1:8000/mbrowse/upload_lcms_dataset/

8. Browse and view the datasets http://127.0.0.1:8000/mbrowse/cpeakgroupmeta_summary/

9. Browse and view the annotations http://127.0.0.1:8000/mbrowse/cpeakgroupmeta_summary/

10. Search the datasets http://127.0.0.1:8000/mbrowse/search_result_summary/


.. |Build Status (Travis)| image:: https://travis-ci.com/computational-metabolomics/django-mbrowse.svg?branch=master
   :target: https://travis-ci.com/computational-metabolomics/django-mbrowse/

.. |Py versions| image:: https://img.shields.io/pypi/pyversions/django-mbrowse.svg?style=flat&maxAge=3600
   :target: https://pypi.python.org/pypi/django-mbrowse/

