Changed trials-in-common page to use a single database query to get analyses. Changed...
[sgn.git] / mason / gem / platform_detail.mas
blob932a722dc78389d96768f811137ba8641a0282b7
1 <%doc>
3 =head1 NAME 
4  
5  platform_detail.mas
6  Mason code to get different sections of the platform 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 platform page.
20  Its controller is: platform.pl
22 =cut
24 =head 1 AUTHOR
26  Aureliano Bombarely (ab782@cornell.edu)
28 =cut 
30 </%doc>
33 <%args>
34 $dbh
35 $schema 
36 $platform            
37 $target_list
38 $template_list
39 $pub_list
40 </%args>
44 <%perl>
46  ## None code is used in experimental_design_page.mas.
47  ## It compose the web page using mason components and args from the controller
49 </%perl>
52 <br>
54 <& 
55    '/gem/platform/basic_platform_info.mas',
56    dbh      => $dbh, 
57    platform => $platform, 
60 <& 
61    '/biosource/sample/pub_brief.mas', 
62    schema   => $schema,
63    pub_list => $pub_list,   
66 <& 
67    '/gem/target/hybridization_composition.mas', 
68    target_list => $target_list, 
71 <& 
72    '/gem/platform/template_composition.mas', 
73    schema        => $schema,
74    template_list => $template_list,