1 <div style="margin: 1em 0">
2 <% columnar_table_html(
4 headings => [qw[ Release Date Description Annotation Download ]],
6 eval{ LoadFile( $build_description_file ) }
7 || [[('-')x2, '<span class="ghosted">release list temporarily unavailable</span>', ('-')x2]],
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>
19 <a href="mailto:$feedback_email?subject=Tomato genome build issue">email SGN</a>
22 <a href="https://ncbijira.ncbi.nlm.nih.gov/browse/TG">issue tracker at NCBI (registered curators only)</a>
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' );