[GENERAL] description = S. cerevisiae pSNP Analysis db_adaptor = Bio::DB::SeqFeature::Store db_args = -adaptor DBI::mysql -dsn DBI:mysql:database=YOURDB;host=YOURHOST;user=YOURUSER;password=YOURPASS plugins = VarFilter BatchDumper FastaDumper Submitter SNPAlleleFrequencyDumper SNPHiliter SNPGFFDumper # Web site configuration info gbrowse root = gbrowse stylesheet = gbrowse.css buttons = images/buttons js = js tmpimages = tmp region segment = 100000 initial landmark = rDNA # advanced features balloon tips = 1 drag and drop = 1 # one hour #cache time = 1 nocache=1 # where to link to when user clicks in detailed view link = AUTO # what image widths to offer image widths = 450 640 800 1024 # color of the selection rectangle hilite fill = beige hilite outline = red # default width of detailed view (pixels) default width = 800 default features = pSNP # max and default segment sizes for detailed view max segment = 500000 default segment = 50000 # zoom levels zoom levels = 50 100 200 500 1000 2000 5000 10000 20000 40000 100000 200000 500000 1000000 # whether to show the sources popup menu (0=false, 1=true; defaults to true) show sources = 1 # colors of the overview, detailed map and key overview bgcolor = lightgrey detailed bgcolor = lightgoldenrodyellow key bgcolor = beige # examples to show in the introduction examples = rDNA # "automatic" classes to try when an unqualified identifier is given automatic classes = Symbol Gene Clone ### HTML TO INSERT AT VARIOUS STRATEGIC LOCATIONS ### # inside the section head = # at the top... header = # a footer footer = # Various places where you can insert your own HTML -- see configuration docs html1 = html2 = html3 = html4 =
html5 = html6 = # 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] freqballoon = sub { my $args = shift; my $feat = $args->{feature}; my $name = $feat->display_name; my $type = $feat->primary_tag; my $class = $feat->class; my @acs = $feat->attributes('acounts'); my $extra = join(' ',$feat->each_tag_value('Note')) if $feat->has_tag('Note'); my $n = $type =~ /^[AEIOU]/i ? 'n' : ''; my $msg = "Name:".$name."
"; my $counts = (split /:/, $acs[0])[1]; my @acounts = split " ", $counts; $msg .= "Consensus: ".$acounts[0]." (".$acounts[1].")
"; $msg .= "Strain: ".$acounts[3]." (".$acounts[4].")
"; $msg .= "Freq: ".$acounts[5]."/".$acounts[2]; return "" . "
$name
$msg
"; } full_sequence = sub { my $args = shift; my $feat = $args->{feature}; my $name = $feat->display_name; my $seq = $feat->seq->seq; $seq =~ s/(\S{75})/$1\n/g; return "
>$name\n$seq
"; } # Advanced feature: an example of a customized popup mentu for rubber band selection [OVERVIEW SELECT MENU] width = 100 html =
Overview
Zoom
Cancel
[DETAIL SELECT MENU] width = 250 html =
SELECTION [X]
Zoom in
Recenter on this region
Dump selection as FASTA
# Default glyph settings [TRACK DEFAULTS] glyph = generic height = 8 bgcolor = cyan fgcolor = cyan label density = 10 bump density = 500 ### TRACK CONFIGURATION #### # the remainder of the sections configure individual tracks [gtsh] feature = SNP pSNP DEL INS COMPLEX glyph = allele_pie_multi ref_allele = sub { return (shift->attributes('refallele'))[0]; } freq = sub { my $snp = shift; my $acounts = (sort $snp->attributes('acounts'))[0]; my $allele = ($snp->attributes('refallele'))[0]; $snp->strand == -1 and $allele =~ tr/ACTG/TGAC/; my $freqs; my @items = split /:/, $acounts; if ($items[1] =~ /[ATCG-]+\s([0-9.]+)\s[0-9]+\s[ATCG-]+\s([0-9.]+)\s[0-9]+\s[ATCG-]+\s([0-9.]+)\s[0-9]+/i) { $freqs = $1." ".$2." ".$3; } elsif ($items[1] =~ /[ATCG-]+\s([0-9.]+)\s[0-9]+\s[ATCG-]+\s([0-9.]+)\s[0-9]+/i) { $freqs = $1." ".$2; } return "TUR:".$freqs; } counts = sub { my $snp = shift; my $acounts = (sort $snp->attributes('acounts'))[0]; my $allele = ($snp->attributes('refallele'))[0]; $snp->strand == -1 and $allele =~ tr/ACTG/TGAC/; my $counts; my @items = split /:/, $acounts; if ($items[1] =~ /[ATCG-]+\s[0-9.]+\s([0-9]+)\s[ATCG-]+\s[0-9.]+\s([0-9]+)\s[ATCG-]+\s[0-9.]+\s([0-9]+)/i) { $counts = $1." ".$2." ".$3; } elsif ($items[1] =~ /[ATCG-]+\s[0-9.]+\s([0-9]+)\s[ATCG-]+\s[0-9.]+\s([0-9]+)/i) { $counts = $1." ".$2; } return "TUR:".$counts; } alleles = sub {return shift->attributes('alleles')} ref_strand = sub {shift->strand} font2color = #0000FF bgcolor = red stacked = 1 label density = 150 bump density = 250 key = Variation link = /cgi-bin/gbrowse_details/cerevisiae?name=$name citation = Variation label = sub{return shift->name} description = 1 height = 21 citation = Variation discovered by TURNIP category = All Species balloon hover = sub { my $snp = shift; my $acounts = (sort $snp->attributes('acounts'))[0]; my $refallele = ($snp->attributes('refallele'))[0]; my @alleles = $snp->attributes('alleles'); my $freqs; my @items = split /:/, $acounts; if ($items[1] =~ /[ATCG-]+\s([0-9.]+)\s[0-9]+\s[ATCG-]+\s([0-9.]+)\s[0-9]+\s[ATCG-]+\s([0-9.]+)\s[0-9]+/i) { $freqs = $1." ".$2." ".$3; } elsif ($items[1] =~ /[ATCG-]+\s([0-9.]+)\s[0-9]+\s[ATCG-]+\s([0-9.]+)\s[0-9]+/i) { $freqs = $1." ".$2; } my @fs = split /\s+/, $freqs; my $fstr = ""; for (my $i=0;$i"; } else { $fstr .= "
  • ".$alleles[$i]." : ".sprintf("%1.1f", $fs[$i]*100)."%
  • "; } } return "".$snp->name."
    Ref: ".$refallele."
    "; } [gtsh:250] feature = SNP pSNP DEL INS COMPLEX glyph = triangle link = /cgi-bin/gbrowse_details/cerevisiae?name=$name point = 1 orient = N bump density = 500 height = 5 label = 1 key = Variation category = All Species ########## ### 273614X ### ########## [273614XSNP] feature = SNP:TURNIP_273614X glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = 273614X SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows 273614X SNPs category = All Species:273614X [273614XpSNP] feature = pSNP:TURNIP_273614X glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = 273614X pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows 273614X pSNPs category = All Species:273614X [273614XINDEL] feature = DEL:TURNIP_273614X INS:TURNIP_273614X glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = 273614X Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows 273614X indels category = All Species:273614X [273614XREAD] feature = read:SGRP_273614X glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = 273614X Reads category = All Species:273614X ########## ### 322134S ### ########## [322134SSNP] feature = SNP:TURNIP_322134S glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = 322134S SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows 322134S SNPs category = All Species:322134S [322134SpSNP] feature = pSNP:TURNIP_322134S glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = 322134S pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows 322134S pSNPs category = All Species:322134S [322134SINDEL] feature = DEL:TURNIP_322134S INS:TURNIP_322134S glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = 322134S Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows 322134S indels category = All Species:322134S [322134SREAD] feature = read:SGRP_322134S glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = 322134S Reads category = All Species:322134S ########## ### 378604X ### ########## [378604XSNP] feature = SNP:TURNIP_378604X glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = 378604X SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows 378604X SNPs category = All Species:378604X [378604XpSNP] feature = pSNP:TURNIP_378604X glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = 378604X pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows 378604X pSNPs category = All Species:378604X [378604XINDEL] feature = DEL:TURNIP_378604X INS:TURNIP_378604X glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = 378604X Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows 378604X indels category = All Species:378604X [378604XREAD] feature = read:SGRP_378604X glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = 378604X Reads category = All Species:378604X ########## ### DBVPG1106 ### ########## [DBVPG1106SNP] feature = SNP:TURNIP_DBVPG1106 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = DBVPG1106 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows DBVPG1106 SNPs category = All Species:DBVPG1106 [DBVPG1106pSNP] feature = pSNP:TURNIP_DBVPG1106 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = DBVPG1106 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows DBVPG1106 pSNPs category = All Species:DBVPG1106 [DBVPG1106INDEL] feature = DEL:TURNIP_DBVPG1106 INS:TURNIP_DBVPG1106 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = DBVPG1106 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows DBVPG1106 indels category = All Species:DBVPG1106 [DBPVG1106READ] feature = read:SGRP_DBVPG1106 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = DBVPG1106 Reads category = All Species:DBVPG1106 ########## ### DBVPG6040 ### ########## [DBVPG6040SNP] feature = SNP:TURNIP_DBVPG6040 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = DBVPG6040 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows DBVPG6040 SNPs category = All Species:DBVPG6040 [DBVPG6040pSNP] feature = pSNP:TURNIP_DBVPG6040 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = DBVPG6040 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows DBVPG6040 pSNPs category = All Species:DBVPG6040 [DBVPG6040INDEL] feature = DEL:TURNIP_DBVPG6040 INS:TURNIP_DBVPG6040 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = DBVPG6040 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows DBVPG6040 indels category = All Species:DBVPG6040 [DBVPG6040READ] feature = read:SGRP_DBVPG6040 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = DBVPG6040 Reads category = All Species:DBVPG6040 ########## ### K11 ### ########## [K11SNP] feature = SNP:TURNIP_K11 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = K11 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows K11 SNPs category = All Species:K11 [K11pSNP] feature = pSNP:TURNIP_K11 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = K11 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows K11 pSNPs category = All Species:K11 [K11INDEL] feature = DEL:TURNIP_K11 INS:TURNIP_K11 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = K11 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows K11 indels category = All Species:K11 [K11READ] feature = read:SGRP_K11 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = K11 Reads category = All Species:K11 ########## ### NCYC110 ### ########## [NCYC110SNP] feature = SNP:TURNIP_NCYC110 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = NCYC110 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows NCYC110 SNPs category = All Species:NCYC110 [NCYC110pSNP] feature = pSNP:TURNIP_NCYC110 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = NCYC110 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows NCYC110 pSNPs category = All Species:NCYC110 [NCYC110INDEL] feature = DEL:TURNIP_NCYC110 INS:TURNIP_NCYC110 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = NCYC110 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows NCYC110 indels category = All Species:NCYC110 [NCYC110READ] feature = read:SGRP_NCYC110 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = NCYC110 Reads category = All Species:NCYC110 ########## ### NCYC362 ### ########## [NCYC362SNP] feature = SNP:TURNIP_NCYC362 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = NCYC362 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows NCYC362 SNPs category = All Species:NCYC362 [NCYC362pSNP] feature = pSNP:TURNIP_NCYC362 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = NCYC362 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows NCYC362 pSNPs category = All Species:NCYC362 [NCYC362INDEL] feature = DEL:TURNIP_NCYC362 INS:TURNIP_NCYC362 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = NCYC362 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows NCYC362 indels category = All Species:NCYC362 [NCYC362READ] feature = read:SGRP_NCYC362 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = NCYC362 Reads category = All Species:NCYC362 ########## ### S288c ### ########## [S288cSNP] feature = SNP:TURNIP_S288c glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = S288c SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows S288c SNPs category = All Species:S288c [S288cpSNP] feature = pSNP:TURNIP_S288c glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = S288c pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows S288c pSNPs category = All Species:S288c [S288cINDEL] feature = DEL:TURNIP_S288c INS:TURNIP_S288c glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = S288c Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows S288c indels category = All Species:S288c [S288cREAD] feature = read:SGRP_S288c glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = S288c Reads category = All Species:S288c ########## ### ScDB53 ### ########## [ScDB53SNP] feature = SNP:TURNIP_ScDB53 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = ScDB53 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB53 SNPs category = All Species:ScDB53 [ScDB53pSNP] feature = pSNP:TURNIP_ScDB53 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = ScDB53 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB53 pSNPs category = All Species:ScDB53 [ScDB53INDEL] feature = DEL:TURNIP_ScDB53 INS:TURNIP_ScDB53 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = ScDB53 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB53 indels category = All Species:ScDB53 [ScDB53READ] feature = read:SGRP_ScDB53 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = ScDB53 Reads category = All Species:ScDB53 ########## ### ScDB65 ### ########## [ScDB65SNP] feature = SNP:TURNIP_ScDB65 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = ScDB65 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB65 SNPs category = All Species:ScDB65 [ScDB65pSNP] feature = pSNP:TURNIP_ScDB65 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = ScDB65 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB65 pSNPs category = All Species:ScDB65 [ScDB65INDEL] feature = DEL:TURNIP_ScDB65 INS:TURNIP_ScDB65 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = ScDB65 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB65 indels category = All Species:ScDB65 [ScDB65READ] feature = read:SGRP_ScDB65 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = ScDB65 Reads category = All Species:ScDB65 ########## ### ScDB73 ### ########## [ScDB73SNP] feature = SNP:TURNIP_ScDB73 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = ScDB73 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB73 SNPs category = All Species:ScDB73 [ScDB73pSNP] feature = pSNP:TURNIP_ScDB73 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = ScDB73 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB73 pSNPs category = All Species:ScDB73 [ScDB73INDEL] feature = DEL:TURNIP_ScDB73 INS:TURNIP_ScDB73 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = ScDB73 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB73 indels category = All Species:ScDB73 [ScDB73READ] feature = read:SGRP_ScDB73 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = ScDB73 Reads category = All Species:ScDB73 ########## ### ScDB88 ### ########## [ScDB88SNP] feature = SNP:TURNIP_ScDB88 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = ScDB88 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB88 SNPs category = All Species:ScDB88 [ScDB88pSNP] feature = pSNP:TURNIP_ScDB88 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = ScDB88 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB88 pSNPs category = All Species:ScDB88 [ScDB88INDEL] feature = DEL:TURNIP_ScDB88 INS:TURNIP_ScDB88 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = ScDB88 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows ScDB88 indels category = All Species:ScDB88 [ScDB88READ] feature = read:SGRP_ScDB88 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = ScDB88 Reads category = All Species:ScDB88 ########## ### Sp1374 ### ########## [Sp1374SNP] feature = SNP:TURNIP_Sp1374 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Sp1374 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Sp1374 SNPs category = All Species:Sp1374 [Sp1374pSNP] feature = pSNP:TURNIP_Sp1374 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Sp1374 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Sp1374 pSNPs category = All Species:Sp1374 [Sp1374INDEL] feature = DEL:TURNIP_Sp1374 INS:TURNIP_Sp1374 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = Sp1374 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows Sp1374 indels category = All Species:Sp1374 [Sp1374READ] feature = read:SGRP_Sp1374 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = Sp1374 Reads category = All Species:Sp1374 ########## ### Sp1528 ### ########## [Sp1528SNP] feature = SNP:TURNIP_Sp1528 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Sp1528 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Sp1528 SNPs category = All Species:Sp1528 [Sp1528pSNP] feature = pSNP:TURNIP_Sp1528 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Sp1528 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Sp1528 pSNPs category = All Species:Sp1528 [Sp1528INDEL] feature = DEL:TURNIP_Sp1528 INS:TURNIP_Sp1528 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = Sp1528 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows Sp1528 indels category = All Species:Sp1528 [Sp1528READ] feature = read:SGRP_Sp1528 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = Sp1528 Reads category = All Species:Sp1528 ########## ### SpDB44 ### ########## [SpDB44SNP] feature = SNP:TURNIP_SpDB44 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = SpDB44 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows SpDB44 SNPs category = All Species:SpDB44 [SpDB44pSNP] feature = pSNP:TURNIP_SpDB44 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = SpDB44 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows SpDB44 pSNPs category = All Species:SpDB44 [SpDB44INDEL] feature = DEL:TURNIP_SpDB44 INS:TURNIP_SpDB44 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = SpDB44 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows SpDB44 indels category = All Species:SpDB44 [SpDB44READ] feature = read:SGRP_SpDB44 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = SpDB44 Reads category = All Species:SpDB44 ########## ### SK1 ### ########## [SK1SNP] feature = SNP:TURNIP_SK1 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = SK1 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows SK1 SNPs category = All Species:SK1 [SK1pSNP] feature = pSNP:TURNIP_SK1 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = SK1 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows SK1 pSNPs category = All Species:SK1 [SK1INDEL] feature = DEL:TURNIP_SK1 INS:TURNIP_SK1 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = SK1 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows SK1 indels category = All Species:SK1 [SK1READ] feature = read:SGRP_SK1 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = SK1 Reads category = All Species:SK1 ########## ### UW03_461_4 ### ########## [UW03_461_4SNP] feature = SNP:TURNIP_UW03_461_4 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW03_461_4 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW03_461_4 SNPs category = All Species:UW03_461_4 [UW03_461_4pSNP] feature = pSNP:TURNIP_UW03_461_4 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW03_461_4 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW03_461_4 pSNPs category = All Species:UW03_461_4 [UW03_461_4INDEL] feature = DEL:TURNIP_UW03_461_4 INS:TURNIP_UW03_461_4 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = UW03_461_4 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows UW03_461_4 indels category = All Species:UW03_461_4 [UW03_461_4READ] feature = read:SGRP_UW03_461_4 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = UW03_461_4 Reads category = All Species:UW03_461_4 ########## ### UW05_227_2 ### ########## [UW05_227_2SNP] feature = SNP:TURNIP_UW05_227_2 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW05_227_2 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW05_227_2 SNPs category = All Species:UW05_227_2 [UW05_227_2pSNP] feature = pSNP:TURNIP_UW05_227_2 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW05_227_2 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW05_227_2 pSNPs category = All Species:UW05_227_2 [UW05_227_2INDEL] feature = DEL:TURNIP_UW05_227_2 INS:TURNIP_UW05_227_2 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = UW05_227_2 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows UW05_227_2 indels category = All Species:UW05_227_2 [UW05_227_2READ] feature = read:SGRP_UW05_227_2 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = UW05_227_2 Reads category = All Species:UW05_227_2 ########## ### UW05_217_3 ### ########## [UW05_217_3SNP] feature = SNP:TURNIP_UW05_217_3 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW05_217_3 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW05_217_3 SNPs category = All Species:UW05_217_3 [UW05_217_3pSNP] feature = pSNP:TURNIP_UW05_217_3 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW05_217_3 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW05_217_3 pSNPs category = All Species:UW05_217_3 [UW05_217_3INDEL] feature = DEL:TURNIP_UW05_217_3 INS:TURNIP_UW05_217_3 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = UW05_217_3 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows UW05_217_3 indels category = All Species:UW05_217_3 [UW05_217_3READ] feature = read:SGRP_UW05_217_3 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = UW05_217_3 Reads category = All Species:UW05_217_3 ########## ### UW83_787_3 ### ########## [UW83_787_3SNP] feature = SNP:TURNIP_UW83_787_3 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW83_787_3 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW83_787_3 SNPs category = All Species:UW83_787_3 [UW83_787_3pSNP] feature = pSNP:TURNIP_UW83_787_3 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW83_787_3 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW83_787_3 pSNPs category = All Species:UW83_787_3 [UW83_787_3INDEL] feature = DEL:TURNIP_UW83_787_3 INS:TURNIP_UW83_787_3 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = UW83_787_3 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows UW83_787_3 indels category = All Species:UW83_787_3 [UW83_787_3READ] feature = read:SGRP_UW83_787_3 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = UW83_787_3 Reads category = All Species:UW83_787_3 ########## ### UW87_2421 ### ########## [UW87_2421SNP] feature = SNP:TURNIP_UW87_2421 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW87_2421 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW87_2421 SNPs category = All Species:UW87_2421 [UW87_2421pSNP] feature = pSNP:TURNIP_UW87_2421 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = UW87_2421 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows UW87_2421 pSNPs category = All Species:UW87_2421 [UW87_2421INDEL] feature = DEL:TURNIP_UW87_2421 INS:TURNIP_UW87_2421 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = UW87_2421 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows UW87_2421 indels category = All Species:UW87_2421 [UW87_2421READ] feature = read:SGRP_UW87_2421 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = UW87_2421 Reads category = All Species:UW87_2421 ########## ### W303 ### ########## [W303SNP] feature = SNP:TURNIP_W303 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = W303 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows W303 SNPs category = All Species:W303 [W303pSNP] feature = pSNP:TURNIP_W303 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = W303 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows W303 pSNPs category = All Species:W303 [W303INDEL] feature = DEL:TURNIP_W303 INS:TURNIP_W303 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = W303 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows W303 indels category = All Species:W303 [W303READ] feature = read:SGRP_W303 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = W303 Reads category = All Species:W303 ########## ### Y9 ### ########## [Y9SNP] feature = SNP:TURNIP_Y9 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Y9 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Y9 SNPs category = All Species:Y9 [Y9pSNP] feature = pSNP:TURNIP_Y9 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Y9 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Y9 pSNPs category = All Species:Y9 [Y9INDEL] feature = DEL:TURNIP_Y9 INS:TURNIP_Y9 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = Y9 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows Y9 indels category = All Species:Y9 [Y9READ] feature = read:SGRP_Y9 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = Y9 Reads category = All Species:Y9 ########## ### Y12 ### ########## [Y12SNP] feature = SNP:TURNIP_Y12 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Y12 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Y12 SNPs category = All Species:Y12 [Y12pSNP] feature = pSNP:TURNIP_Y12 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Y12 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Y12 pSNPs category = All Species:Y12 [Y12INDEL] feature = DEL:TURNIP_Y12 INS:TURNIP_Y12 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = Y12 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows Y12 indels category = All Species:Y12 [Y12READ] feature = read:SGRP_Y12 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = Y12 Reads category = All Species:Y12 ########## ### Y55 ### ########## [Y55SNP] feature = SNP:TURNIP_Y55 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Y55 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Y55 SNPs category = All Species:Y55 [Y55pSNP] feature = pSNP:TURNIP_Y55 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = Y55 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows Y55 pSNPs category = All Species:Y55 [Y55INDEL] feature = DEL:TURNIP_Y55 INS:TURNIP_Y55 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = Y55 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows Y55 indels category = All Species:Y55 [Y55READ] feature = read:SGRP_Y55 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = Y55 Reads category = All Species:Y55 ########## ### YIIc17_E5 ### ########## [YIIc17_E5SNP] feature = SNP:TURNIP_YIIc17_E5 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YIIc17_E5 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YIIc17_E5 SNPs category = All Species:YIIc17_E5 [YIIc17_E5pSNP] feature = pSNP:TURNIP_YIIc17_E5 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YIIc17_E5 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YIIc17_E5 pSNPs category = All Species:YIIc17_E5 [YIIc17_E5INDEL] feature = DEL:TURNIP_YIIc17_E5 INS:TURNIP_YIIc17_E5 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = YIIc17_E5 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows YIIc17_E5 indels category = All Species:YIIc17_E5 [YIIc17_E5READ] feature = read:SGRP_YIIc17_E5 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = YIIc17_E5 Reads category = All Species:YIIc17_E5 ########## ### YJM975 ### ########## [YJM975SNP] feature = SNP:TURNIP_YJM975 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YJM975 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YJM975 SNPs category = All Species:YJM975 [YJM975pSNP] feature = pSNP:TURNIP_YJM975 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YJM975 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YJM975 pSNPs category = All Species:YJM975 [YJM975INDEL] feature = DEL:TURNIP_YJM975 INS:TURNIP_YJM975 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = YJM975 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows YJM975 indels category = All Species:YJM975 [YJM975READ] feature = read:SGRP_YJM975 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = YJM975 Reads category = All Species:YJM975 ########## ### YJM978 ### ########## [YJM978SNP] feature = SNP:TURNIP_YJM978 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YJM978 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YJM978 SNPs category = All Species:YJM978 [YJM978pSNP] feature = pSNP:TURNIP_YJM978 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YJM978 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YJM978 pSNPs category = All Species:YJM978 [YJM978INDEL] feature = DEL:TURNIP_YJM978 INS:TURNIP_YJM978 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = YJM978 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows YJM978 indels category = All Species:YJM978 [YJM978READ] feature = read:SGRP_YJM978 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = YJM978 Reads category = All Species:YJM978 ########## ### YJM981 ### ########## [YJM981SNP] feature = SNP:TURNIP_YJM981 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YJM981 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YJM981 SNPs category = All Species:YJM981 [YJM981pSNP] feature = pSNP:TURNIP_YJM981 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YJM981 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YJM981 pSNPs category = All Species:YJM981 [YJM981INDEL] feature = DEL:TURNIP_YJM981 INS:TURNIP_YJM981 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = YJM981 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows YJM981 indels category = All Species:YJM981 [YJM981READ] feature = read:SGRP_YJM981 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = YJM981 Reads category = All Species:YJM981 ########## ### YPS128 ### ########## [YPS128SNP] feature = SNP:TURNIP_YPS128 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YPS128 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YPS128 SNPs category = All Species:YPS128 [YPS128pSNP] feature = pSNP:TURNIP_YPS128 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YPS128 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YPS128 pSNPs category = All Species:YPS128 [YPS128INDEL] feature = DEL:TURNIP_YPS128 INS:TURNIP_YPS128 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = YPS128 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows YPS128 indels category = All Species:YPS128 [YPS128READ] feature = read:SGRP_YPS128 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = YPS128 Reads category = All Species:YPS128 ########## ### YPS606 ### ########## [YPS606SNP] feature = SNP:TURNIP_YPS606 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YPS606 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YPS606 SNPs category = All Species:YPS606 [YPS606pSNP] feature = pSNP:TURNIP_YPS606 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YPS606 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YPS606 pSNPs category = All Species:YPS606 [YPS606INDEL] feature = DEL:TURNIP_YPS606 INS:TURNIP_YPS606 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = YPS606 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows YPS606 indels category = All Species:YPS606 [YPS606READ] feature = read:SGRP_YPS606 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = YPS606 Reads category = All Species:YPS606 ########## ### YS4 ### ########## [YS4SNP] feature = SNP:TURNIP_YS4 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YS4 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YS4 SNPs category = All Species:YS4 [YS4pSNP] feature = pSNP:TURNIP_YS4 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YS4 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YS4 pSNPs category = All Species:YS4 [YS4INDEL] feature = DEL:TURNIP_YS4 INS:TURNIP_YS4 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = YS4 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows YS4 indels category = All Species:YS4 [YS4READ] feature = read:SGRP_YS4 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = YS4 Reads category = All Species:YS4 ########## ### YS9 ### ########## [YS9SNP] feature = SNP:TURNIP_YS9 glyph = triangle fgcolor = black bgcolor = red fillcolor = red point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YS9 SNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YS9 SNPs category = All Species:YS9 [YS9pSNP] feature = pSNP:TURNIP_YS9 glyph = triangle fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 sixframe = 1 orient = N label = sub {shift->name} key = YS9 pSNPs balloon click width = 500 balloon hover width = 350 balloon hover = $name is a $type at $start. balloon click = http://www.google.com/search?q=$name citation = This track shows YS9 pSNPs category = All Species:YS9 [YS9INDEL] feature = DEL:TURNIP_YS9 INS:TURNIP_YS9 glyph = generic fgcolor = black bgcolor = blue fillcolor = blue point = 1 description = 0 height = 5 label = sub {shift->name} key = YS9 Indels balloon click width = 500 balloon hover width = 350 balloon click = http://www.google.com/search?q=$name citation = This track shows YS9 indels category = All Species:YS9 [YS9READ] feature = read:SGRP_YS9 glyph = cds fgcolor = black bgcolor = blue fillcolor = blue label = sub {shift->name} bump = 1 label density = 10 height = 4 key = YS9 Reads category = All Species:YS9