Skip to content
This repository has been archived by the owner on Nov 25, 2019. It is now read-only.

tanghaibao/pgdd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pgdd

Server scripts in PGDD

This package includes most of the server contents on Plant genome duplication database (except the database connector script for security reasons). Contains scripts, templates, css and images folder.

Installation

  • Apache configuration. mod_python is required for this to run on your server. You might also need to change apache2.conf to allow mod_python.publisher to treat your scripts as python scripts:

    ## For Bao's mod_python stuff
    
    <Directory "/var/www/duplication/">
        AddHandler mod_python .py
        PythonHandler mod_python.publisher
        PythonDebug On
    </Directory>
    
    <Directory "/var/www/duplication/scripts/">
        AddHandler mod_python .py
        PythonHandler mod_python.publisher
        PythonDebug On
    </Directory>
    
    <Directory "/var/www/duplication/images/">
        SetHandler None
    </Directory>
    
    <Directory "/var/www/duplication/css/">
        SetHandler None
    </Directory>
    
  • MySQL databases. Look at the database connector script in scripts/preferences.py. The default database name is bao and two tables loci and block with the schema documented here.

About

Dynamic contents within the plant genome duplication database

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published