Metadata-Version: 2.1
Name: dgenome
Version: 1.1.8a3
Summary: UNKNOWN
Home-page: https://gitlab.com/r78v10a07/dgenome
Maintainer: Vera Alvarez, Roberto
Maintainer-email: veraalva@ncbi.nlm.nih.gov
License: Public Domain
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Science/Research
Classifier: License :: Public Domain
Classifier: Natural Language :: English
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Dist: asgiref (==3.2.10)
Requires-Dist: certifi (==2020.6.20)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: django-appconf (==1.0.4)
Requires-Dist: django-compressor (==2.4)
Requires-Dist: django-filter (==2.3.0)
Requires-Dist: django (==3.1.1)
Requires-Dist: djangorestframework (==3.11.1)
Requires-Dist: idna (==2.10)
Requires-Dist: numpy (==1.19.2)
Requires-Dist: pandas (==1.1.2)
Requires-Dist: python-dateutil (==2.8.1)
Requires-Dist: python-gitlab (==2.5.0)
Requires-Dist: pytz (==2020.1)
Requires-Dist: pyyaml (==5.3.1)
Requires-Dist: rcssmin (==1.0.6)
Requires-Dist: requests (==2.24.0)
Requires-Dist: rjsmin (==1.1.0)
Requires-Dist: settings-overrider (==0.5.0)
Requires-Dist: six (==1.15.0)
Requires-Dist: sqlparse (==0.3.1)
Requires-Dist: urllib3 (==1.25.10)
Requires-Dist: uwsgi (==2.0.19.1)


dgenome
-----------

Dgenome is a Django app which handle the genome coordinates 

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

1. Add "dgenome" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'dgenome',
    ]

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

    url(r'^dgenome/', include((dgenome.urls, 'dgenome'), namespace='dgenome')),

3. Run `python manage.py makemigrations dgenome` to create the dgenome models.

4. Run `python manage.py migrate` to create the dgenome models.

5. Insert the genomic data using the UCSC GTF file and the script: bin/load_genome_ucsc.py



