Merge pull request #4272 from solgenomics/topic/fix-vcf-download
[sgn.git] / mason / qtl / qtl_form / confirm.mas
blobfc570e16aeed8f162c2f54576d9484acfd44a02a
1 <%doc>
3 =head1 NAME 
4 qtl/qtl_form/confirm.mas - a mason component for displaying a confirmation
5 message of qtl population loading completion and a link to the population
6 page.
8 =AUTHOR
9 Isaak Y Tecle (iyt2@cornell.edu)
11 =cut
13 </%doc>
15 <%args>
17 $pop_id
18 $guide
20 </%args>
22 <%perl>
23   
24 my $dbh = CXGN::DB::Connection->new();
25 my ($pop_name, $pop_link);
27 if ($pop_id)  {
28   my $pop   = CXGN::Phenome::Population->new($dbh, $pop_id);
29   $pop_name = $pop->get_name();
30   $pop_link = qq | <a href="/qtl/population/$pop_id"><b>$pop_name</b></a> |;    
33 </%perl>
35 <& /page/page_title.mas, title => "Step 6: Confirmation" &>
36 <&| /page/info_section.mas, title => "Confirmation", subtitle => $guide &>
37  <form action="/phenome/qtl_load.pl" method="POST" enctype="MULTIPART/FORM-DATA">  
38     <table cellspacing=20>
39     <tr>
40       <td><b><p>You have successfully uploaded your QTL data.</p> 
41            <p>On the next page you will see the population data summary. 
42              The qtl analysis is performed on-the-fly and you need to click the 
43              graph icon  corresponding to the trait of your interest to proceed 
44              with the QTL mapping analysis. The QTL analysis takes a few minutes, 
45              so please be patient. </p>
46           <p>To continue to the QTL analysis page, follow the link below:</p>
47           <% $pop_link %></b>
48       </td>
49      </tr>
50      <tr>      
51         <td> 
52           <input type="hidden" name="type" value="confirm">
53         </td>
54      </tr>     
55    </table>
56   </form>
57 </&>