Changed trials-in-common page to use a single database query to get analyses. Changed...
[sgn.git] / mason / gem / target_detail.mas
blob9f9cb2177227c9926f2f49ee28967f4ecb7d8e26
1 <%doc>
3 =head1 NAME 
4  
5  target_detail.mas
6  Mason code to get different sections of target web_page.
8 =cut
10 =head1 VERSION 
12 0.1
14 =cut 
16 =head1 DESCRIPTION
18  This mason script coordinate different mason component to create the target page.
20  Its controller is: target.pl
22 =cut
24 =head 1 AUTHOR
26  Aureliano Bombarely (ab782@cornell.edu)
28 =cut 
30 </%doc>
34 <%args>
35 $schema 
36 $target 
37 </%args>
39 <%perl>
41  ## None code is used in target_detail.mas.
42  ## It compose the web page using mason components and args from the controller
44  ## The hybridization composition use a array reference of a list of target objects
45  ## For target page it have sense only with one target object, so this script
46  ## will transfer $target as array reference for this purpose.
48  my @target_list = ($target);
50 </%perl>
55 <br>
57 <& 
58    '/gem/target/basic_target_info.mas', 
59    target => $target 
62 <& 
63    '/gem/target/hybridization_composition.mas', 
64    target_list => \@target_list