Manatee

Manatee Installation Below are the instructions for a full Manatee install. Please follow along from top to bottom and the installation will be much easier. Note: Please read over the README very carefuly to attain valuable and necessary configuration changes that will be required for Manatee to work with them.
The README files are platform specific.


Update the APACHE configuration file
  • Please update the "httpd.conf" file and add the following code:


    • [SHELL]$ emacs httpd.conf






        ### Manatee Environment Variables
        setenv WEBSERVER_TMP "/tmp"

        ### CGI access permissions to the /tmp area
        < Directory "/tmp" >
            Options Indexes FollowSymLinks
            AllowOverride None
            Order allow,deny
            Allow from all
        < /Directory >

        ### Aliases
        < IfModule alias_module >
            ScriptAlias /tigr-scripts/ "/export/httpd/cgi-bin/"
            Alias /webserver_tmp/ "/tmp"
        < /IfModule >


      [SHELL]$
  • For MAC OSX users: Please change folder name "/tmp" to "/private/tmp".
Top

Manatee Source Installation Top

Manatee Standard Database Installation Top

Update the configuration file
  • Please update the "Manatee.conf" file to add the locations of the lookup files.



    • SHELL> emacs chado_prok_manatee/conf/Manatee.conf






      • Prok:Mysql:localhost
        Chado:Mysql:localhost

      • HMM_LOOKUP_FILE=path/to/lookup_files/coding_hmm.lib.db
        HMM_GO_LOOKUP_FILE=path/to/lookup_files/hmm_go.db
        TCHAR_LOOKUP_FILE=path/to/lookup_files/tchar.db
        PROSITE_LOOKUP_FILE=path/to/lookup_files/prosite.db
        EC2GO_LOOKUP_FILE=path/to/lookup_files/ec2go.db
        ROLES_LOOKUP_FILE=path/to/lookup_files/role_data.db


      [SHELL]$
Top