add Doubly Resolvable RC Design
[sgn.git] / mason / genomes / Solanum_lycopersicum.mas
blobbe7a3a29460fd6bc5c395d5740401ce2ae84b966
1 <%args>
2 $organism
3 </%args>
4 <& /page/page_title.mas, title => 'International Tomato Genome Sequencing Project' &>
6 <& /homepage/tomato_genome_release.mas &>
7 <center>
8   <img style="display: block" src="/documents/img/tomato_varieties_720x.jpg" border="0" width="720" />
9 </center>
10 <br />
11 <br />
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.
20 </&>
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>
25 </&>
28 <&| /page/info_section.mas, title=>'Project' &>
29   <p> <& /genomes/Solanum_lycopersicum/project_background.mas &> </p>
30   </&>
32 <&| /page/info_section.mas,
33       title       => 'Official annotation',
34       subtitle    => 'browse genome contigs and official annotations',
35       collapsible => 1,
36       collapsed   => 0,
37  &>
39   <table class="indentedcontent" style="margin: 0 10px 10px 10px">
40       <tr>
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>.
48         </td>
49         <td><a class="footer" href="http://www.eu-sol.net"><img src="/img/eusol_logo_small.jpg" border="0" /></a></td>
50       </tr>
51    </table>
53    <& /genomes/Solanum_lycopersicum/itag_releases.mas &>
55 </&>
57 <&| /page/info_section.mas, title => 'Tomato genome sequence builds', collapsible => 1, collapsed=>1 &>
58   <& /genomes/Solanum_lycopersicum/wgs_builds_table.mas &>
59 </&>
61 <&| /page/info_section.mas, title => 'Clone sequences', collapsible => 1, collapsed=>1 &>
62   <ul>
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>
65   </ul>
66 </&>
68 <&| /page/info_section.mas, title => 'Other tomato genome pages on SGN', collapsible => 1 &>
69   <ul>
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>
72     </ul>
73 </&>
75 <&| /page/info_section.mas, title => 'Links', collapsible => 1 &>
76   <ul>
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>
85   </ul>
86 </&>
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>
90 </&>
92 <%once>
94 sub cview_map_links {
95     my ($dbh) = @_;
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',
101                 );
102     my @links;
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> &ndash; $maps{$mid}|;
108             }
109             else {
110                 warn "no map found with map_version_id $mvid, link will not be displayed";
111             }
112         }
113         else {
114             warn "no map_version_id found for map_id $mid, link will not be displayed";
115         }
116     }
118     return @links;
121 </%once>