made SGN::Controller::Marker a proper catalyst controller, migrated rflp image view...
[sgn.git] / mason / biosource / sample_detail.mas
blobc8f4019232adb6b5d99b6970ad9b793e7d420ad2
1 <%doc>
3 =head1 NAME 
4  
5  sample_detail.mas
6  Mason code to get different sections of the sample.pl 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 sample.pl page
20 =cut
22 =head 1 AUTHOR
24  Aureliano Bombarely (ab782@cornell.edu)
26 =cut 
28 </%doc>
31 <%args>
32 $schema
33 $sample
34 $sample_relations_href
35 $pub_list
36 $target_list
37 </%args>
39 <%perl>
41 ## None perl code, sample_detail.mas pass the arguments from the controller to the 
42 ## different mason components
44 </%perl>
47 <br>
49 <& 
50     '/biosource/sample/basic_sample_info.mas',
51     schema => $schema, 
52     sample => $sample,
55 <& 
56     '/biosource/sample/sample_relations.mas',
57     schema => $schema, 
58     sample => $sample,
59     sample_relations_href => $sample_relations_href,
62 <& 
63    '/biosource/sample/pub_brief.mas', 
64     schema => $schema,
65     pub_list => $pub_list,
68 <& 
69     '/biosource/sample/exp_associated.mas', 
70     schema => $schema,
71     target_list => $target_list,