4 <& /page/page_title.mas, title => 'International Tomato Genome Sequencing Project' &>
6 <& /homepage/tomato_genome_release.mas &>
8 <img style="display: block" src="/documents/img/tomato_varieties_720x.jpg" border="0" width="720" />
13 <& /homepage/tomato_genome_publication.mas &>
16 <&| /page/info_section.mas,
17 title => 'Data release policy',
19 All data is openly and freely available on <a href="/">SGN</a>, <a href="http://mips.helmholtz-muenchen.de/plant/tomato/index.jsp" target="_new">MIPS</a>, and Genbank.
22 <&| /page/info_section.mas, title=>'Download' &>
24 <a href="ftp://ftp.solgenomics.net/tomato_genome">FTP site</a> | <a href="/jbrowse_solgenomics/?data=data%2Fjson%2FSL2.50&loc=SL2.50ch00%3A8722915..13084079&tracks=DNA&highlight=">Genome Browser</a> | <a href="/tools/blast/">BLAST</a>
28 <&| /page/info_section.mas, title=>'Project' &>
29 <p> <& /genomes/Solanum_lycopersicum/project_background.mas &> </p>
32 <&| /page/info_section.mas,
33 title => 'Official annotation',
34 subtitle => 'browse genome contigs and official annotations',
39 <table class="indentedcontent" style="margin: 0 10px 10px 10px">
42 <td>The official annotation for the tomato genome is provided
44 by the <a href="http://www.ab.wur.nl/TomatoWiki">International
45 Tomato Annotation Group (ITAG)</a>, a multinational
46 consortium, funded in part by the
47 <a href="http://www.eu-sol.net">EU-SOL project</a>.
49 <td><a class="footer" href="http://www.eu-sol.net"><img src="/img/eusol_logo_small.jpg" border="0" /></a></td>
53 <& /genomes/Solanum_lycopersicum/itag_releases.mas &>
57 <&| /page/info_section.mas, title => 'Tomato genome sequence builds', collapsible => 1, collapsed=>1 &>
58 <& /genomes/Solanum_lycopersicum/wgs_builds_table.mas &>
61 <&| /page/info_section.mas, title => 'Clone sequences', collapsible => 1, collapsed=>1 &>
63 <li><a href="/organism/Solanum_lycopersicum/clone_sequencing">Clone sequencing home</a></li>
64 <li><a href="/search/direct_search.pl?search=bacs">Search BACS</a></li>
68 <&| /page/info_section.mas, title => 'Other tomato genome pages on SGN', collapsible => 1 &>
70 <li><a href="/about/tomato_project_overview.pl">Tomato Project Details</a></li>
71 <li><a href="ftp://ftp.sgn.cornell.edu/genomes/Solanum_lycopersicum/">Tomato genome FTP</a></li>
75 <&| /page/info_section.mas, title => 'Links', collapsible => 1 &>
77 <li><a href="http://tgrc.ucdavis.edu/Data/Acc/AccDetail.aspx?AccessionNum=LA4345">Heinz 1706 order link at TGRC</a> (the variety used in tomato genome sequencing project)</li>
78 <li><a href="http://www.genome.arizona.edu/fpc/tomato/">Tomato FPC pages</a> at University of Arizona, USA.</li>
79 <li>Sanger FTP site with <a href="ftp://ftp.sanger.ac.uk/pub/tomato/map/">MboI BAC library FPC build</a></li>
80 <li><a href="http://www.sanger.ac.uk/Software/">Software links at Sanger</a></li>
81 <li>The <a href="http://biosrv.cab.unina.it">Tomato Genome Annotation pages</a> at the <a href="http://cab.unina.it">computational biology group</a> of the <a href="http://www.unina.it">University of Naples</a>, Italy.</li>
82 <li><a href="http://www.ncbi.nlm.nih.gov/assembly/GCA_000325825.1/">Tomato mitochondrial genome (Genbank)</a> (the site <a href="http://www.mitochondrialgenome.org">mitochondrialgenome.org</a> seems defunct as of Dec 2013)</li>
83 <li><a href="http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?db=nuccore&id=149384932">Tomato chloroplast sequence (Genbank)</a></li>
88 <&| /page/info_section.mas, title => 'Publications' &>
89 <ul><li><a href="/genomes/Solanum_lycopersicum/publications.pl">List of tomato genome publications</a></li></ul>
96 my $map_factory = CXGN::Cview::MapFactory->new($dbh);
97 my %maps = ( c9 => 'clones anchored in FPC contigs from Sanger 2006 FPC build (Tomato HindIII and MboI libraries)',
98 p9 => 'clones anchored with overgo, computational, or manual methods',
99 13 => 'clones anchored with FISH',
100 agp => 'clones anchored in manually-curated final chromosome assemblies',
103 foreach my $mid (sort keys %maps) {
104 if( my $mvid = CXGN::Cview::Map::Tools::find_current_version($dbh, $mid) ) {
105 if( my $m = $map_factory->create({map_version_id => $mvid}) ) {
106 my $sn = $m->get_short_name;
107 push @links, qq|<a href="/cview/map.pl?map_id=$mid">$sn</a> – $maps{$mid}|;
110 warn "no map found with map_version_id $mvid, link will not be displayed";
114 warn "no map_version_id found for map_id $mid, link will not be displayed";