1 / 16

GBrowse – Introduction

GBrowse – Introduction. Developed by GMOD Generic Model Organism Database Generic G enome Browse r Web application to explore genomes Free software Goal: simplify & standardize MODs Model Organism Databases. colored glyphs. GBrowse – Introduction. bird’s eye view.

palti
Download Presentation

GBrowse – Introduction

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. GBrowse – Introduction Developed by GMOD Generic Model Organism Database Generic Genome Browser Web application to explore genomes Free software Goal: simplify & standardize MODs Model Organism Databases

  2. colored glyphs GBrowse – Introduction bird’s eye view... ...or zoom in for details customize it

  3. Human Genome Segmental Duplication Database GBrowse – Examples

  4. banner description instructions region displayed search overview overview details tracks cookies GBrowse – Features

  5. what’s allowable for searches bookmark current view and settings for re-visits to page view Detail image in SVG format restore standard settings GBrowse – Features

  6. Gene symbols Gene IDs Sequence IDs Genetic markers Relative nucleotide coordinates Absolute nucleotide coordinates etc... GBrowse – Features click

  7. GBrowse – Features pick-list

  8. GBrowse – Installation • Apache • MySQL (recommended) • Perl • Standard Perl modules • CGI (2.56 or higher) • GD (2.07 or higher) • CGI::Session (4.03 or higher) • DBI (any version) • DBD::mysql (any version) • Digest::MD5 (any version) • Text::Shellwords (any version) • Class::Base (any version)

  9. GBrowse – Installation • BioPerl • Bio::Graphics • Bio::DB::Das::Chado • Optional Perl modules • XML::Parser, XML::Writer, XML::Twig, XML::DOM • LWP • Bio::Das • BioMOBY • GD::SVG • Bio::SCF File::Temp io-lib(v1.7+) • Math::FFT Statistics::Descriptive • Bio::PrimerDesigner, Math::Round, primer3

  10. GBrowse – Installation http://prdownloads.sourceforge.net/gmod File: GBrowse-2.21.tar.gz Extract: tar –xvzf GBrowse-2.21.tar.gz Folder: cd GBrowse-2.21

  11. GBrowse – Installation http://prdownloads.sourceforge.net/gmod File: GBrowse-2.21.tar.gz Extract: tar –xvzf GBrowse-2.21.tar.gz Folder: cd GBrowse-2.21 Run in terminal for unix system perl Makefile.PL make make test (optional) make install

  12. GBrowse – Installation perl Makefile.PL HTDOCS : /var/www/ CONF: /etc/apache2/ CGIBIN: /usr/lib/cgi-bin APACHE: /var/www/

  13. Database – Preparations mysql -uroot -ppassword -e 'create database yeast' mysql -uroot -ppassword -e 'grant all privileges on yeast.* to me@localhost‘ mysql -uroot -ppassword -e 'grant file on *.* to me@localhost' mysql -uroot -ppassword -e 'grant select on yeast.* to nobody@localhost‘ bp_bulk_load_gff.pl -d yeast –create sample_data/yeast_data.gff bp_load_gff.pl -d yeast -fasta yeast.fasta.gz bp_bulk_load_gff.pl -d yeast sample_data/yeast_data.gff

  14. GBrowse – Configuration [GENERAL] description = S. cerevisiae (via SGD Nov 2001) db_adaptor = Bio::DB::GFF db_args = -adaptor dbi::mysql -dsn dbi:mysql:database=yeast;host=localhost aggregators = transcript alignment user = passwd = . [Genes] feature = gene:sgd glyph = generic bgcolor = yellow forwardcolor = yellow reversecolor = turquoise strand_arrow = 1 height = 6 description = 1 key = Named gene

  15. GBrowse – Configuration init_code = sub score_color { my $feature = shift; if ($feature->score > 50) { return 'red'; } else{ return 'green'; } } sub score_height { my $feature = shift; if ($feature->score > 50) { return 10; } else { return 5; } }

  16. GBrowse – Configuration [EST_ALIGNMENTS] glyph = generic bgcolor = \&score_color height = \&score_height

More Related