Metadata-Version: 1.2
Name: dgenome
Version: 1.1.6a3
Summary: UNKNOWN
Home-page: https://gitlab.com/r78v10a07/dgenome
Maintainer: Vera Alvarez, Roberto
Maintainer-email: veraalva@ncbi.nlm.nih.gov
License: Public Domain
Description: 
        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
        
        
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
