Merge pull request #3124 from solgenomics/topic/drone_imagery_analysis
[sgn.git] / mason / genomes / Solanum_lycopersicum / wgs_builds_table.mas
blobe8522420d4a0ea5b17de15fb7ba9749f1d29c31f
1 <div style="margin: 1em 0">
2   <% columnar_table_html(
3           __align  => 'cllcc',
4           headings => [qw[ Release Date Description Annotation Download ]],
5           data     =>
6              eval{ LoadFile( $build_description_file ) }
7                || [[('-')x2, '<span class="ghosted">release list temporarily unavailable</span>', ('-')x2]],
8      )
9   %>
10 </div>
12 <%perl>
13   my $feedback_email = $c->get_conf('feedback_email');
14   print info_table_html( 'Assembly issues' => <<EOF );
15   <p>If in the course of your work you find errors or other issues with the tomato genome assemblies, please report them using one of the following links:</p>
17   <ul>
18     <li>
19       <a href="mailto:$feedback_email?subject=Tomato genome build issue">email SGN</a>
20     </li>
21     <li>
22       <a href="https://ncbijira.ncbi.nlm.nih.gov/browse/TG">issue tracker at NCBI (registered curators only)</a>
23     </li>
24   </ul>
25 EOF
26 </%perl>
29 <%init>
30 use YAML::Any 'LoadFile';
31 use CXGN::Page::FormattingHelpers qw | columnar_table_html info_table_html|;
32 use File::Spec::Functions;
34 my $build_description_file =
35     catfile( $c->get_conf('static_content_path'), 'genomes','Solanum_lycopersicum','genome_builds.yaml' );
36 </%init>