[GENERAL]
description = Yeast chromosomes 1+2 (advanced)
database = scaffolds
initial landmark = chrI:143000..180000
# bring in the special Submitter plugin for the rubber-band select menu
plugins = FastaDumper RestrictionAnnotator SequenceDumper TrackDumper Submitter
autocomplete = 1
default tracks = Genes
ORFs
tRNAs
CDS
Transp
Centro:overview
GC:region
# examples to show in the introduction
examples = chrI
chrII
chrI:80,000..120,000
"membrane trafficking"
NUT21
YAL063C
# "automatic" classes to try when an unqualified identifier is given
automatic classes = Symbol Gene Clone
#################################
# database definitions
#################################
[scaffolds:database]
db_adaptor = Bio::DB::SeqFeature::Store
db_args = -adaptor memory
-dir $DATABASES/yeast_scaffolds
search options = default +autocomplete
[annotations:database]
db_adaptor = Bio::DB::SeqFeature::Store
db_args = -adaptor memory
-dir $DATABASES/yeast_chr1+2
search options = default +autocomplete
# Advanced feature: custom balloons
custom balloons = [balloon]
delayTime = 500
[balloon500]
maxWidth = 500
delayTime = 50
# Advanced feature: an example of callbacks to be run remotely
# by gbrowse_details for AJAX/iframe balloons
[TOOLTIPS]
intro = sub {
my $args = shift;
my $feat = $args->{feature};
my $name = $feat->display_name;
my $type = $feat->primary_tag;
my $class = $feat->class;
my $extra = join(' ',$feat->each_tag_value('Note')) if $feat->has_tag('Note');
my $n = $type =~ /^[AEIOU]/i ? 'n' : '';
my $msg = "Hello, I am $name, a$n $type of class $class";
$msg .= "
I am described as a $extra" if $extra;
$msg .= "
Click to see the sequence of $name";
return "
| $name |
|---|
| $msg |
>$name\n$seq"; } # Advanced feature: # Pop up rubberband menus for submitting selected region to search engines... #include "detail_select_menu.conf" #include "submitter_plugin.conf" # Default glyph settings [TRACK DEFAULTS] glyph = generic database = annotations height = 8 bgcolor = cyan fgcolor = black label density = 25 bump density = 100 show summary = 99999 # go into summary mode when zoomed out to 100k # default pop-up balloon balloon hover = $name is a $type spanning $ref from $start to $end. Click for more details. ### TRACK CONFIGURATION #### # the remainder of the sections configure individual tracks [Centro:overview] feature = centromere bgcolor = blue glyph = dot fgcolor = black height = 8 point = 1 show summary = 0 # no summary of this one key = Centromeres [tRNA:overview] feature = tRNA glyph = generic bgcolor = lightgray fgcolor = black height = 4 stranded = 1 description = 1 show summary = 0 # no summary of this one key = tRNAs [GC:region] glyph = dna global feature = 1 database = scaffolds height = 40 gc_window = auto do_gc = 1 strand = both fgcolor = red axis_color = blue show summary = 0 # no summary of this one key = GC Content [Genes] feature = gene glyph = segments bgcolor = yellow forwardcolor = yellow reversecolor = turquoise label = sub { my $f = shift; my $name = $f->display_name; my @aliases = sort $f->attributes('Alias'); $name .= " (@aliases)" if @aliases; $name; } height = 6 description = 0 balloon hover width = 350 balloon hover = sub { my $f = shift; return join ' ',$f->notes } balloon click width = 450 balloon click =
![]() This gene brought to you by SGD. |
Gene $name |
|---|---|
| See gene details | |
| Ask SGD about $name | |
| Ask Wikipedia about $name | |
| Ask Google about $name |