only show tomato annotation releases that have connectable databases
[sgn.git] / mason / markers / unigene_match.mas
blob3e3235a1342ca7bc495eb0046c41c30969a9d47f
2 <%doc>
4 =head1 NAME
6 /markers/unigene_match.mas - a Mason component displaying the unigene matches associated with a marker
8 =head1 DESCRIPTION
10 parameters 
12 =over 5
14 =item *
16 $marker - a CXGN::Marker object.
18 =back
20 =head1 AUTHOR
22 Lukas Mueller <lam87@cornell.edu>
24 =cut
26 </%doc>
28 <%args>
29 $marker
30 </%args>
32 <%perl>
34 my $marker_id = $marker->marker_id();
35 my $html='';
37 my $unigene_matches = $marker->primer_unigene_matches(); #$dbh->selectcol_arrayref("SELECT DISTINCT unigene_id FROM primer_unigene_match WHERE marker_id=$marker_id");
39 foreach my $ug (@$unigene_matches){
40   
41   $html .= qq{<a href="/search/unigene.pl?unigene_id=SGN-U$ug">SGN-U$ug</a><br>};
42   
45 # don't show anything if there is no data...
47 if (!$html) { return; }
49 </%perl>
51 <&| /page/info_section.mas, title=>'Unigene blast matches for primers' &>
52   <% $html %>
53 </&>