fixed file name
[sgn.git] / mason / transcript / unigene_build_detail.mas
blob5777acf7f36b125d2f36ae84c4b17f1de9ea2081
1 <%doc>
3 =head1 NAME 
4  
5  unigene_build_detail.mas
6  Mason code to get different sections of the unigene_build web_page.
8 =cut
10 =head1 VERSION 
12 0.1
14 =cut 
16 =head1 SYNOPSIS
18 $m->exec('/transcript/unigene_build_detail.mas', unigene_build => $unigene_build );
20 where: $m is a Mason Interpreter Object (HTML::Mason::Interp),
21        $bcs, a DBIx::Class::Schema object with the classes of Bio::Chado::Schema
22        $schema, a DBIx::Class::Schema object with the classes of SGN::Schema
23        $unigene_build, an CXGN::Transcript::UnigeneBuild object
24        
25 =cut
27 =head1 DESCRIPTION
29  This mason script coordinate different mason component to create the unigene build page.
31  Its controller is: unigene_build.pl
33 =cut
35 =head 1 AUTHOR
37  Aureliano Bombarely (ab782@cornell.edu)
39 =cut  
41 </%doc>
44 <%args>
45 $bcs
46 $schema
47 $unigene_build
48 </%args>
50 <%perl>
52 ## None code is used in unigene_build_detail.mas.
53 ## It compose the web page using mason components and args from the controller
55 </%perl>
60    '/transcript/unigene_build/basic_unigene_build_info.mas',
61    bcs           => $bcs,
62    schema        => $schema,
63    unigene_build => $unigene_build
67    '/transcript/unigene_build/history_unigene_build_info.mas',
68    schema        => $schema,
69    unigene_build => $unigene_build
72    /util/import_javascript.mas,
73    classes => 'CXGN.Effects'