Merge branch 'master' into topic/brapi_observations_call
[sgn.git] / mason / markers / kfg.mas
blob6809dba7d51a18260def91c6576a450e4e2bd154
2 <%doc>
4 =head1 NAME
6 /markers/kfg.mas - a Mason component displaying information about kfg (known function genes) markers
8 =head1 DESCRIPTION
10 takes the parameter $marker - a CXGN::Marker object.
12 =head1 AUTHOR
14 Lukas Mueller <lam87@cornell.edu>
16 =cut
18 </%doc>
20 <%args>
21 $marker
22 </%args>
24 <%perl>
27   # prints a link to the gene page if this marker maps to a gene 
28   # (KFG = Known Function Gene)
30   my @loci = $marker->associated_loci();
32 my $html = '';
33 foreach my $l (@loci) {
34   my ($locus_id, $locus_name) = ($l->[0], $l->[1]);
36     $html .= qq{This marker is associated with the <a href="/phenome/locus_display.pl?locus_id=$locus_id">$locus_name</a> locus.<br /><br />};
37   }
39   
42 </%perl>
44 <% $html %>