6 /markers/unigene_match.mas - a Mason component displaying the unigene matches associated with a marker
16 $marker - a CXGN::Marker object.
22 Lukas Mueller <lam87@cornell.edu>
34 my $marker_id = $marker->marker_id();
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){
41 $html .= qq{<a href="/search/unigene.pl?unigene_id=SGN-U$ug">SGN-U$ug</a><br>};
45 # don't show anything if there is no data...
47 if (!$html) { return; }
51 <&| /page/info_section.mas, title=>'Unigene blast matches for primers' &>