graphical filtering of accession search
[sgn.git] / mason / solgs / model / model_summary.mas
blobaae9a1327e0a913a8f5d93b546d52914ecc9fed3
1 <%doc>
3 =head1 NAME
4  
5 model/model_summary.mas - displays multiple traits GS analysis output and links to traits' GS detailed output pages
7 =AUTHOR
9 Isaak Y Tecle (iyt2@cornell.edu)
11 =cut
13 </%doc>
15 <%args>
17 $model_data
19 </%args>
21 <%perl>
23 </%perl>
25 <&| /page/info_section.mas, 
26     collapsible => 1, 
27     collapsed   => 0, 
28     title       => "Models summary"
29 &>     
30   
31 <table  style="width:95%">
32   <tr>
33     <th>Training population</th>
34     <th>Description</th>
35     <th>Models</th>
36   </tr>
37    
38 % foreach my $model (@$model_data)
40     
41   <tr style="background-color:#ccccff">
42     <td>
43    <%  $model->[0] %>
44     </td>
45     <td>
46    <%  $model->[1] %>
47     </td>    
48     <td>
49       <& /page/columnar_table.mas,
50          headings    => ['Trait', 'Model accuracy', 'Heritability'],
51          data        => $model->[2],
52         __alt_freq   => 1,
53         __align      => "l",
54         __tableattrs => 'style="padding: 1px"',
55       &>
56     </td>
57   </tr>
61 </table>
63 </&>