Difference between revisions of "Gbrowse on 4.0.2CD"


From Knoppix Documentation Wiki
Jump to: navigation, search
(apache at startup Code to install a basic gbrowse environment)
(basic/intermediate setup Code to install a basic gbrowse environment)
Line 4: Line 4:
  
 
Prerequisites: a persistent disk image of about 300 MB.  I used 500 MB just to be sure I had enough room for temporary files and the like.
 
Prerequisites: a persistent disk image of about 300 MB.  I used 500 MB just to be sure I had enough room for temporary files and the like.
 +
== Basic setup ==
 
<pre><nowiki>#!/bin/bash
 
<pre><nowiki>#!/bin/bash
  
Line 35: Line 36:
 
To enable gbrowse to start at boot time:
 
To enable gbrowse to start at boot time:
 
  update-rc.d apache start 40 2 3 4 5 . stop 60 0 1 6 .
 
  update-rc.d apache start 40 2 3 4 5 . stop 60 0 1 6 .
 +
 +
== Intermediate setup ==
 +
<pre><nowiki>#!/bin/bash
 +
</nowiki></pre>

Revision as of 20:44, 2 November 2005

The Generic Genome Browser, gbrowse, is a combination of database and interactive web page for manipulating and displaying annotations on genomes.

Code to install a basic gbrowse environment

Prerequisites: a persistent disk image of about 300 MB. I used 500 MB just to be sure I had enough room for temporary files and the like.

Basic setup

#!/bin/bash

set -x

die () {
  echo "$1"
  exit $2
}

apt-get update || die "unable to apt-get" 1
apt-get -y install libcgi-perl libgd-gd2-perl libdbi-perl \
  libdbd-mysql-perl libmd5-perl libtext-shellwords-perl bioperl || die "unable to install " 2

cd /root
wget 'http://umn.dl.sourceforge.net/sourceforge/gmod/Generic-Genome-Browser-1.62.tar.gz' || die "unable to wget" 3
tar -xzvf Generic-Genome-Browser-1.62.tar.gz  || die "unable to untar" 4

( cd Generic-Genome-Browser-1.62/ &&
perl Makefile.PL CONF=/etc/apache/ HTDOCS=/var/www/ CGIBIN=/usr/lib/cgi-bin/ &&
make &&
make install || die "unable to install gbrowse" 5
)

/etc/init.d/apache restart


Point your browser to http://localhost/gbrowse

To enable gbrowse to start at boot time:

update-rc.d apache start 40 2 3 4 5 . stop 60 0 1 6 .

Intermediate setup

#!/bin/bash