X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=www%2Findex.cgi;h=64314fa6520ff70122f3b54af9e6c473c8ee0665;hb=5de6112b70b59420b245ce636a8b2e3c90acbe00;hp=38957c3761bd51aba0e3dc4cf186cb64d1dc2a66;hpb=e4a6b8574ae2ebaced28d0355814617772a188c3;p=biopieces.git diff --git a/www/index.cgi b/www/index.cgi index 38957c3..64314fa 100755 --- a/www/index.cgi +++ b/www/index.cgi @@ -26,14 +26,17 @@ use warnings; use lib $ENV{ 'BP_PERL' }; use CGI; +use URI::Escape; use Data::Dumper; +use Digest::MD5; +use Time::HiRes; use Maasha::Common; use Maasha::Filesys; use Maasha::Calc; use Maasha::XHTML; -use Maasha::KISS; -use Maasha::BBrowser::Track; -use Maasha::BBrowser::Draw; +use Maasha::BGB::Session; +use Maasha::BGB::Track; +use Maasha::BGB::Draw; my ( $cgi, $cookie, @html ); @@ -42,16 +45,16 @@ $cookie = cookie_default( $cgi );; push @html, Maasha::XHTML::html_header( cgi_header => 1, - title => "Biopieces Genome Browser", - css_file => "bgb.css", - author => "Martin A. Hansen, mail\@maasha.dk", - description => "Biopieces Genome Browser", + title => 'Biopieces Genome Browser', + css_file => 'bgb.css', + author => 'Martin A. Hansen, mail@maasha.dk', + description => 'Biopieces Genome Browser', keywords => [ qw( Biopieces biopiece genome browser viewer bacterium bacteria prokaryote prokaryotes ) ], no_cache => 1, ); push @html, Maasha::XHTML::h1( txt => "Biopieces Genome Browser", class => 'center' ); -push @html, Maasha::XHTML::form_beg( action => $cookie->{ 'SCRIPT' }, method => "get", enctype => "multipart/form-data" ); +push @html, Maasha::XHTML::form_beg( action => $cookie->{ 'SCRIPT' }, method => "post", enctype => "multipart/form-data" ); push @html, page( $cookie ); @@ -59,12 +62,12 @@ push @html, Maasha::XHTML::form_end; push @html, Maasha::XHTML::body_end; push @html, Maasha::XHTML::html_end; -# push @html, Maasha::XHTML::hdump( $cgi->param ); # DEBUG -# push @html, Maasha::XHTML::hdump( $cookie ); # DEBUG +# push @html, Maasha::XHTML::hdump( { $cgi->Vars } ); # DEBUG +# push @html, Maasha::XHTML::hdump( $cookie ); # DEBUG +# push @html, Maasha::XHTML::hdump( \%ENV ); # DEBUG print "$_\n" foreach @html; - # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> SUBROUTINES <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @@ -82,21 +85,73 @@ sub cookie_default # Returns a hash. - my ( $cookie, $path ); + my ( $cookie, $session ); $cookie = {}; - $cookie->{ 'SCRIPT' } = Maasha::Common::get_scriptname(); - $cookie->{ 'DATA_DIR' } = "Data"; - $cookie->{ 'LIST_PAGES' } = [ qw( user clade genome assembly contig browse ) ]; - $cookie->{ 'PAGE' } = $cgi->param( 'page' ) || 'user'; - $cookie->{ 'USER' } = $cgi->param( 'user' ) || ''; - $cookie->{ 'CLADE' } = $cgi->param( 'clade' ) || ''; - $cookie->{ 'GENOME' } = $cgi->param( 'genome' ) || ''; - $cookie->{ 'ASSEMBLY' } = $cgi->param( 'assembly' ) || ''; - $cookie->{ 'CONTIG' } = $cgi->param( 'contig' ) || ''; - $cookie->{ 'NAV_START' } = $cgi->param( 'nav_start' ); - $cookie->{ 'NAV_END' } = $cgi->param( 'nav_end' ); + if ( $cgi->param( 'nav_search' ) ) + { + if ( $cgi->param( 'nav_search' ) =~ /([0-9,]+)[ -]([0-9,]+)/ ) + { + $cookie->{ 'NAV_START' } = $1; + $cookie->{ 'NAV_END' } = $2; + } + else + { + $cookie->{ 'SEARCH' } = $cgi->param( 'nav_search' ); + + $cgi->param( 'page', 'search' ); + } + } + + $cookie->{ 'SCRIPT' } = Maasha::Common::get_scriptname(); + $cookie->{ 'DATA_DIR' } = "Data"; + $cookie->{ 'SESSION_DIR' } = "Sessions"; + $cookie->{ 'LIST_PAGES' } = [ qw( clade genome assembly contig browse ) ]; + $cookie->{ 'USER' } = $cgi->param( 'user' ); + $cookie->{ 'PASSWORD' } = $cgi->param( 'password' ); + $cookie->{ 'SESSION_ID' } = $cgi->param( 'session_id' ); + + $session = session_restore( $cookie ); + + cookie_login( $cookie ); + + # session_id_check( $cookie, $session ); + + if ( $cookie->{ 'LOGIN_ERROR' } or $cookie->{ 'SESSION_ERROR' } ) + { + $cookie->{ 'PAGE' } = 'login'; + } + elsif ( $cookie->{ 'LOGIN' } ) + { + if ( $cgi->param( 'genome' ) ) { + $cookie->{ 'PAGE' } = 'browse'; + } else { + $cookie->{ 'PAGE' } = $session->{ 'PAGE' } || 'clade'; + } + } + elsif ( not defined $cookie->{ 'USER' } ) + { + $cookie->{ 'PAGE' } = 'login'; + } + else + { + $cookie->{ 'PAGE' } = $cgi->param( 'page' ) || 'login'; + } + + $cookie->{ 'TRACK_STATUS' } = $session->{ 'TRACK_STATUS' }; + $cookie->{ 'CLADE' } = $cgi->param( 'clade' ) || $session->{ 'CLADE' }; + $cookie->{ 'GENOME' } = $cgi->param( 'genome' ) || $session->{ 'GENOME' }; + $cookie->{ 'ASSEMBLY' } = $cgi->param( 'assembly' ) || $session->{ 'ASSEMBLY' }; + $cookie->{ 'CONTIG' } = $cgi->param( 'contig' ) || $session->{ 'CONTIG' }; + $cookie->{ 'Q_ID' } = $cgi->param( 'q_id' ) || $session->{ 'Q_ID' }; + $cookie->{ 'NAV_START' } ||= defined $cgi->param( 'nav_start' ) ? $cgi->param( 'nav_start' ) : $session->{ 'NAV_START' }; + $cookie->{ 'NAV_END' } ||= defined $cgi->param( 'nav_end' ) ? $cgi->param( 'nav_end' ) : $session->{ 'NAV_END' }; + $cookie->{ 'NAV_CENTER' } = $cgi->param( 'nav_center' ); + $cookie->{ 'S_BEG' } = defined $cgi->param( 's_beg' ) ? $cgi->param( 's_beg' ) : $session->{ 'S_BEG' }; + $cookie->{ 'S_END' } = defined $cgi->param( 's_end' ) ? $cgi->param( 's_end' ) : $session->{ 'S_END' }; + $cookie->{ 'STRAND' } = $cgi->param( 'strand' ) || $session->{ 'STRAND' }; + $cookie->{ 'TRACK' } = $cgi->param( 'track' ); $cookie->{ 'ZOOM_IN1' } = $cgi->param( 'zoom_in1' ); $cookie->{ 'ZOOM_IN2' } = $cgi->param( 'zoom_in2' ); $cookie->{ 'ZOOM_IN3' } = $cgi->param( 'zoom_in3' ); @@ -110,47 +165,205 @@ sub cookie_default $cookie->{ 'MOVE_RIGHT2' } = $cgi->param( 'move_right2' ); $cookie->{ 'MOVE_RIGHT3' } = $cgi->param( 'move_right3' ); - $cookie->{ 'IMG_WIDTH' } = 1200; - $cookie->{ 'IMG_HEIGHT' } = 800; + $cookie->{ 'IMG_WIDTH' } = 1200; # Width of browser image in pixels + $cookie->{ 'IMG_HEIGHT' } = 800; # Height of browser image in pixels # TODO: Redundant? + $cookie->{ 'WIGGLE_HEIGHT' } = 75; # Height of Wiggle tracks in pixels $cookie->{ 'TRACK_OFFSET' } = 20; $cookie->{ 'TRACK_SPACE' } = 20; - $cookie->{ 'RULER_FONT_SIZE' } = 10; + $cookie->{ 'RULER_FONT_SIZE' } = 10; # Size of ruler font in pixels $cookie->{ 'RULER_COLOR' } = [ 0, 0, 0 ]; $cookie->{ 'SEQ_FONT_SIZE' } = 10; $cookie->{ 'SEQ_COLOR' } = [ 0, 0, 0, ]; $cookie->{ 'FEAT_WIDTH' } = 5; $cookie->{ 'FEAT_COLOR' } = [ 0, 0, 0 ]; - $cookie->{ 'FEAT_MAX' } = 5000; +# $cookie->{ 'FEAT_MAX' } = 5000; # TODO: Reduntant? + +# $cookie->{ 'LIST_USER' } = Maasha::BGB::Track::list_users(); # TODO: Redundant? + + if ( $cookie->{ 'USER' } and not $cookie->{ 'LOGIN_ERROR' } ) + { + $cookie->{ 'LIST_CLADE' } = Maasha::BGB::Track::list_clades( $cookie->{ 'USER' } ); + + if ( $cookie->{ 'CLADE' } ) + { + $cookie->{ 'LIST_GENOME' } = Maasha::BGB::Track::list_genomes( $cookie->{ 'USER' }, $cookie->{ 'CLADE' } ); + + if ( $cookie->{ 'GENOME' } ) + { + $cookie->{ 'LIST_ASSEMBLY' } = Maasha::BGB::Track::list_assemblies( $cookie->{ 'USER' }, $cookie->{ 'CLADE' }, $cookie->{ 'GENOME' } ); + + if ( $cookie->{ 'ASSEMBLY' } ) + { + $cookie->{ 'LIST_CONTIG' } = Maasha::BGB::Track::list_contigs( $cookie->{ 'USER' }, $cookie->{ 'CLADE' }, $cookie->{ 'GENOME' }, $cookie->{ 'ASSEMBLY' } ); + } + } + } + + if ( $cookie->{ 'CONTIG' } ) + { + cookie_start( $cookie ); + cookie_end( $cookie ); + cookie_zoom( $cookie ); + cookie_move( $cookie ); + cookie_center( $cookie ); + cookie_track_status( $cookie ); + } + } + + $cookie->{ 'STRAND' } = '+' if defined $cookie->{ 'STRAND' } and $cookie->{ 'STRAND' } eq ' '; # FIXME ugly HTML fix + + session_store( $cookie, $session ); + + return wantarray ? %{ $cookie } : $cookie; +} + + +sub session_restore +{ + # Martin A. Hansen, March 2010. + + # Restores session and returns this. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns hashref. + + my ( $session ); + + if ( defined $cookie->{ 'USER' } and -d "$cookie->{ 'SESSION_DIR' }/$cookie->{ 'USER' }" ) { + $session = Maasha::BGB::Session::session_restore( "$cookie->{ 'SESSION_DIR' }/$cookie->{ 'USER' }/session.json" ); + } + + return wantarray ? %{ $session } : $session; +} + + +sub session_store +{ + # Martin A. Hansen, March 2010. + + # Store a session updated with cookie information to session file. + + my ( $cookie, # cookie hash + $session, # session hash + ) = @_; - $path = "$cookie->{ 'DATA_DIR' }/Users"; + # Returns nothing. - $cookie->{ 'LIST_USER' } = Maasha::Filesys::ls_dirs_base( $path ) if -d $path; + my ( $new_session ); - $path .= "/$cookie->{ 'USER' }"; + if ( defined $cookie->{ 'USER' } and $cookie->{ 'USER' } ne '' and -d "$cookie->{ 'SESSION_DIR' }/$cookie->{ 'USER' }" ) + { + $new_session->{ 'PASSWORD' } = $session->{ 'PASSWORD' }; + $new_session->{ 'SESSION_ID' } = $session->{ 'SESSION_ID' }; + $new_session->{ 'TIME' } = Maasha::Common::time_stamp(); + $new_session->{ 'PAGE' } = $cookie->{ 'PAGE' }; - $cookie->{ 'LIST_CLADE' } = Maasha::Filesys::ls_dirs_base( $path ) if -d $path; + if ( $cookie->{ 'PAGE' } =~ /browse|export_pdf|export_svg/ ) + { + $new_session->{ 'CLADE' } = $cookie->{ 'CLADE' }; + $new_session->{ 'GENOME' } = $cookie->{ 'GENOME' }; + $new_session->{ 'ASSEMBLY' } = $cookie->{ 'ASSEMBLY' }; + $new_session->{ 'CONTIG' } = $cookie->{ 'CONTIG' }; + $new_session->{ 'NAV_START' } = $cookie->{ 'NAV_START' }; + $new_session->{ 'NAV_END' } = $cookie->{ 'NAV_END' }; + } + elsif ( $cookie->{ 'PAGE' } eq 'contig' ) + { + $new_session->{ 'CLADE' } = $cookie->{ 'CLADE' }; + $new_session->{ 'GENOME' } = $cookie->{ 'GENOME' }; + $new_session->{ 'ASSEMBLY' } = $cookie->{ 'ASSEMBLY' }; + } + elsif ( $cookie->{ 'PAGE' } eq 'assembly' ) + { + $new_session->{ 'CLADE' } = $cookie->{ 'CLADE' }; + $new_session->{ 'GENOME' } = $cookie->{ 'GENOME' }; + } + elsif ( $cookie->{ 'PAGE' } eq 'genome' ) + { + $new_session->{ 'CLADE' } = $cookie->{ 'CLADE' }; + } + elsif ( $cookie->{ 'PAGE' } =~ /export|dna/ ) + { + $new_session->{ 'CLADE' } = $cookie->{ 'CLADE' }; + $new_session->{ 'GENOME' } = $cookie->{ 'GENOME' }; + $new_session->{ 'ASSEMBLY' } = $cookie->{ 'ASSEMBLY' }; + $new_session->{ 'CONTIG' } = $cookie->{ 'CONTIG' }; + $new_session->{ 'Q_ID' } = $cookie->{ 'Q_ID' }; + $new_session->{ 'S_BEG' } = $cookie->{ 'S_BEG' }; + $new_session->{ 'S_END' } = $cookie->{ 'S_END' }; + $new_session->{ 'STRAND' } = $cookie->{ 'STRAND' }; + } + + $new_session->{ 'TRACK_STATUS' } = $cookie->{ 'TRACK_STATUS' }; - $path .= "/$cookie->{ 'CLADE' }"; + Maasha::BGB::Session::session_store( "$cookie->{ 'SESSION_DIR' }/$cookie->{ 'USER' }/session.json", $new_session ); + } +} - $cookie->{ 'LIST_GENOME' } = Maasha::Filesys::ls_dirs_base( $path ) if -d $path; - $path .= "/$cookie->{ 'GENOME' }"; +sub session_id_check +{ + # Martin A. Hansen, March 2010. - $cookie->{ 'LIST_ASSEMBLY' } = Maasha::Filesys::ls_dirs_base( $path ) if -d $path; + # Check that the session id in the cookie and session match. + # Sets SESSION_ERROR flag in cookie if not matching. - $path .= "/$cookie->{ 'ASSEMBLY' }"; + my ( $cookie, # cookie hash + $session, # session hash + ) = @_; - $cookie->{ 'LIST_CONTIG' } = Maasha::Filesys::ls_dirs_base( $path ) if -d $path; + # Returns nothing. - if ( $cookie->{ 'CONTIG' } ) + if ( defined $cookie->{ 'SESSION_ID' } and defined $session->{ 'SESSION_ID' } ) { - cookie_start( $cookie ); - cookie_end( $cookie ); - cookie_zoom( $cookie ); - cookie_move( $cookie ); + if ( $cookie->{ 'SESSION_ID' } ne $session->{ 'SESSION_ID' } ) { + $cookie->{ 'SESSION_ERROR' } = 1; + } else { + $cookie->{ 'SESSION_ERROR' } = 0; + } } +} - return wantarray ? %{ $cookie } : $cookie; + +sub cookie_login +{ + # Martin A. Hansen, December 2009. + + # Check a user and password from CGI against the password file and + # set the session ID, if found, in the cookie. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns nothing. + + my ( $session ); + + if ( defined $cookie->{ 'PASSWORD' } ) + { + if ( defined $cookie->{ 'USER' } and -d "$cookie->{ 'SESSION_DIR' }/$cookie->{ 'USER' }" ) + { + $session = Maasha::BGB::Session::session_restore( "$cookie->{ 'SESSION_DIR' }/$cookie->{ 'USER' }/session.json" ); + + if ( $session->{ 'PASSWORD' } eq Digest::MD5::md5_hex( $cookie->{ 'PASSWORD' } ) ) + { + $cookie->{ 'TIME' } = Maasha::Common::time_stamp(); + $cookie->{ 'SESSION_ID' } ||= Maasha::BGB::Session::session_new(); + $cookie->{ 'LOGIN' } = 1; + $cookie->{ 'LOGIN_ERROR' } = 0; + } + else + { + $cookie->{ 'LOGIN_ERROR' } = 1; + } + } + else + { + $cookie->{ 'LOGIN_ERROR' } = 1; + } + } } @@ -169,11 +382,11 @@ sub cookie_start if ( defined $cookie->{ 'NAV_START' } ) { $cookie->{ 'NAV_START' } =~ tr/,//d; - $cookie->{ 'NAV_START' } = 1 if $cookie->{ 'NAV_START' } <= 0; + $cookie->{ 'NAV_START' } = 0 if $cookie->{ 'NAV_START' } < 0; } else { - $cookie->{ 'NAV_START' } = 1; + $cookie->{ 'NAV_START' } = 0; } } @@ -193,7 +406,7 @@ sub cookie_end my ( $max ); - $max = Maasha::Filesys::file_size( Maasha::BBrowser::Track::path_seq( $cookie ) ); + $max = Maasha::Filesys::file_size( Maasha::BGB::Track::path_seq( $cookie ) ); if ( defined $cookie->{ 'NAV_END' } ) { @@ -221,7 +434,7 @@ sub cookie_zoom my ( $max, $dist, $new_dist, $dist_diff ); - $max = Maasha::Filesys::file_size( Maasha::BBrowser::Track::path_seq( $cookie ) ); + $max = Maasha::Filesys::file_size( Maasha::BGB::Track::path_seq( $cookie ) ); $dist = $cookie->{ 'NAV_END' } - $cookie->{ 'NAV_START' }; @@ -246,7 +459,7 @@ sub cookie_zoom $cookie->{ 'NAV_START' } = int( $cookie->{ 'NAV_START' } + ( $dist_diff / 2 ) ); $cookie->{ 'NAV_END' } = int( $cookie->{ 'NAV_END' } - ( $dist_diff / 2 ) ); - $cookie->{ 'NAV_START' } = 1 if $cookie->{ 'NAV_START' } <= 0; + $cookie->{ 'NAV_START' } = 0 if $cookie->{ 'NAV_START' } < 0; $cookie->{ 'NAV_END' } = $max if $cookie->{ 'NAV_END' } > $max; } } @@ -262,9 +475,11 @@ sub cookie_move my ( $cookie, # cookie hash ) = @_; + # Returns nothing. + my ( $max, $dist, $shift, $new_start, $new_end ); - $max = Maasha::Filesys::file_size( Maasha::BBrowser::Track::path_seq( $cookie ) ); + $max = Maasha::Filesys::file_size( Maasha::BGB::Track::path_seq( $cookie ) ); $dist = $cookie->{ 'NAV_END' } - $cookie->{ 'NAV_START' }; @@ -296,59 +511,60 @@ sub cookie_move } -sub cookie_href +sub cookie_center { - # Martin A. Hansen, November 2009. - - # Returns the href for a taxonomy path terminated at a given - # page using information stored in a cookie. + # Martin A. Hansen, March 2010. + + # Adjust the cookie values for NAV_START and NAV_END based + # on cookie CENTER value if defined. my ( $cookie, # cookie hash - $page, # page ) = @_; - # Returns a string. + # Returns nothing. - my ( @href ); + my ( $l_dist, $r_dist ); - while ( 1 ) + if ( defined $cookie->{ 'NAV_CENTER' } ) { - push @href, "$cookie->{ 'SCRIPT' }?page=$page"; - push @href, "user=$cookie->{ 'USER' }" if $cookie->{ 'USER' }; - last if $page eq 'user'; - push @href, "clade=$cookie->{ 'CLADE' }" if $cookie->{ 'CLADE' }; - last if $page eq 'clade'; - push @href, "genome=$cookie->{ 'GENOME' }" if $cookie->{ 'GENOME' }; - last if $page eq 'genome'; - push @href, "assembly=$cookie->{ 'ASSEMBLY' }" if $cookie->{ 'ASSEMBLY' }; - last if $page eq 'assembly'; - push @href, "contig=$cookie->{ 'CONTIG' }" if $cookie->{ 'CONTIG' }; - last if $page eq 'contig'; - last; - } + $l_dist = $cookie->{ 'NAV_CENTER' } - $cookie->{ 'NAV_START' }; + $r_dist = $cookie->{ 'NAV_END' } - $cookie->{ 'NAV_CENTER' }; - return join "&", @href; + if ( $l_dist > $r_dist ) { + $cookie->{ 'NAV_START' } = $cookie->{ 'NAV_END' } - 2 * $r_dist; + } else { + $cookie->{ 'NAV_END' } = $cookie->{ 'NAV_START' } + 2 * $l_dist; + } + } } -sub cookie_page_next +sub cookie_track_status { - # Martin A. Hansen, November 2009. - - # Returns the next page in the taxonomy path. + # Martin A. Hansen, March 2010. + # + my ( $cookie, # cookie hash ) = @_; - # Returns a string. + # Returns nothing. - my ( $i ); + my ( $clade, $genome, $assembly, $track ); - for ( $i = 0; $i < @{ $cookie->{ 'LIST_PAGES' } }; $i++ ) { - last if $cookie->{ 'PAGE' } eq $cookie->{ 'LIST_PAGES' }->[ $i ]; - } + $clade = $cookie->{ 'CLADE' }; + $genome = $cookie->{ 'GENOME' }; + $assembly = $cookie->{ 'ASSEMBLY' }; + $track = $cookie->{ 'TRACK' }; - return $cookie->{ 'LIST_PAGES' }->[ $i + 1 ]; + if ( $track ) + { + if ( $cookie->{ 'TRACK_STATUS' }->{ $clade }->{ $genome }->{ $assembly }->{ $track } ) { + $cookie->{ 'TRACK_STATUS' }->{ $clade }->{ $genome }->{ $assembly }->{ $track } = 0; + } else { + $cookie->{ 'TRACK_STATUS' }->{ $clade }->{ $genome }->{ $assembly }->{ $track } = 1; + } + } } @@ -369,23 +585,62 @@ sub page my ( @html ); - if ( $cookie->{ 'PAGE' } eq 'export' ) { - push @html, page_export( $cookie ); + if ( $cookie->{ 'SESSION_ID' } ) { + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "session_id", value => $cookie->{ 'SESSION_ID' } ) ); + } + + if ( $cookie->{ 'PAGE' } eq 'login' ) { + push @html, page_login( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'search' ) { + push @html, page_search( $cookie ); } elsif ( $cookie->{ 'PAGE' } eq 'browse' ) { push @html, page_browse( $cookie ); - } else { - push @html, page_taxonomy( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'dna' ) { + push @html, page_dna( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'export' ) { + push @html, page_export( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'export_pdf' ) { + push @html, page_export_pdf( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'export_svg' ) { + push @html, page_export_svg( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'clade' ) { + push @html, page_clade( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'genome' ) { + push @html, page_genome( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'assembly' ) { + push @html, page_assembly( $cookie ); + } elsif ( $cookie->{ 'PAGE' } eq 'contig' ) { + push @html, page_contig( $cookie ); } return wantarray ? @html : \@html; } -sub page_export +sub page_login { - # Martin A. Hansen, November 2009. + # Martin A. Hansen, December 2009. + + # Renders the login page. + + my ( $cookie, + ) = @_; + + # Returns a list. + + my ( @html ); + + push @html, section_login( $cookie ); + + return wantarray ? @html : \@html; +} - # Renders the export page. + +sub page_search +{ + # Martin A. Hansen, December 2009. + + # Renders the search page. my ( $cookie, ) = @_; @@ -395,7 +650,7 @@ sub page_export my ( @html ); push @html, section_taxonomy_table( $cookie ); - push @html, section_export( $cookie ); + push @html, section_search( $cookie ); return wantarray ? @html : \@html; } @@ -417,12 +672,153 @@ sub page_browse push @html, section_taxonomy_table( $cookie ); push @html, section_navigate( $cookie ); push @html, section_browse( $cookie ); + push @html, section_linkout( $cookie ); return wantarray ? @html : \@html; } -sub page_taxonomy +sub page_dna +{ + # Martin A. Hansen, November 2009. + + # Renders the DNA page. + + my ( $cookie, + ) = @_; + + # Returns a list. + + my ( @html ); + + push @html, section_taxonomy_table( $cookie ); + push @html, section_dna( $cookie ); + + return wantarray ? @html : \@html; +} + + +sub page_export +{ + # Martin A. Hansen, November 2009. + + # Renders the export page. + + my ( $cookie, + ) = @_; + + # Returns a list. + + my ( @html ); + + push @html, section_taxonomy_table( $cookie ); + push @html, section_export( $cookie ); + + return wantarray ? @html : \@html; +} + + +sub page_export_pdf +{ + # Martin A. Hansen, March 2010. + + # Renders the export PDF page. + + my ( $cookie, + ) = @_; + + # Returns a list. + + my ( @html ); + + push @html, section_taxonomy_table( $cookie ); + push @html, section_export_pdf( $cookie ); + + return wantarray ? @html : \@html; +} + + +sub page_export_svg +{ + # Martin A. Hansen, March 2010. + + # Renders the export SVG page. + + my ( $cookie, + ) = @_; + + # Returns a list. + + my ( @html ); + + push @html, section_taxonomy_table( $cookie ); + push @html, section_export_svg( $cookie ); + + return wantarray ? @html : \@html; +} + + +sub page_clade +{ + # Martin A. Hansen, March 2010. + + # Renders the clade selection page. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( @html ); + + push @html, section_taxonomy_table( $cookie ); + push @html, section_clade( $cookie ); + + return wantarray ? @html : \@html; +} + + +sub page_genome +{ + # Martin A. Hansen, March 2010. + + # Renders the genome selection page. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( @html ); + + push @html, section_taxonomy_table( $cookie ); + push @html, section_genome( $cookie ); + + return wantarray ? @html : \@html; +} + + +sub page_assembly +{ + # Martin A. Hansen, March 2010. + + # Renders the clade selection page. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( @html ); + + push @html, section_taxonomy_table( $cookie ); + push @html, section_assembly( $cookie ); + + return wantarray ? @html : \@html; +} + + +sub page_contig { # Martin A. Hansen, November 2009. @@ -436,7 +832,7 @@ sub page_taxonomy my ( @html ); push @html, section_taxonomy_table( $cookie ); - push @html, section_taxonomy_select( $cookie ); + push @html, section_contig( $cookie ); return wantarray ? @html : \@html; } @@ -445,6 +841,55 @@ sub page_taxonomy # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> SECTIONS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< +sub section_login +{ + # Martin A. Hansen, December 2009. + + # Returns a HTML section with a login menu. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( $user, $password, $login, @html ); + + $user = Maasha::XHTML::text( name => "user", value => "", size => 20 ); + $password = Maasha::XHTML::password( name => "password", value => "", size => 20 ); + $login = Maasha::XHTML::submit( name => "login_submit", value => "Login" ); + + push @html, Maasha::XHTML::h2( txt => "Login", class => 'center' ); + + push @html, Maasha::XHTML::table_beg( summary => "Login table", align => 'center' ); + push @html, Maasha::XHTML::table_row_simple( tr => [ "User:", $user ] ); + push @html, Maasha::XHTML::table_row_simple( tr => [ "Password:", $password ] ); + push @html, Maasha::XHTML::table_row_simple( tr => [ "", $login ] ); + push @html, Maasha::XHTML::table_end; + + if ( defined $cookie->{ 'CLADE' } and + defined $cookie->{ 'GENOME' } and + defined $cookie->{ 'ASSEMBLY' } and + defined $cookie->{ 'CONTIG' } and + defined $cookie->{ 'NAV_START' } and + defined $cookie->{ 'NAV_END' } + ) + { + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "clade", value => $cookie->{ 'CLADE' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "genome", value => $cookie->{ 'GENOME' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "assembly", value => $cookie->{ 'ASSEMBLY' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "contig", value => $cookie->{ 'CONTIG' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "nav_start", value => $cookie->{ 'NAV_START' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "nav_end", value => $cookie->{ 'NAV_END' } ) ); + } + + if ( $cookie->{ 'LOGIN_ERROR' } ) { + push @html, Maasha::XHTML::h3( txt => "Bad user or password - please retry", class => 'error' ); + } + + return wantarray ? @html : \@html; +} + + sub section_taxonomy_table { # Martin A. Hansen, November 2009. @@ -464,7 +909,13 @@ sub section_taxonomy_table { last if $page eq $cookie->{ 'PAGE' } or $page eq 'browse'; - $href = cookie_href( $cookie, $page ); + $href = "$cookie->{ 'SCRIPT' }?page=$page"; + $href .= "&session_id=$cookie->{ 'SESSION_ID' }"; + $href .= "&user=$cookie->{ 'USER' }"; + $href .= "&clade=$cookie->{ 'CLADE' }" if $page !~ /clade/; + $href .= "&genome=$cookie->{ 'GENOME' }" if $page !~ /clade|genome/; + $href .= "&assembly=$cookie->{ 'ASSEMBLY' }" if $page !~ /clade|genome|assembly/; + $href .= "&contig=$cookie->{ 'CONTIG' }" if $page !~ /clade|genome|assembly|contig/; $txt = ": $cookie->{ uc $page }"; @@ -473,18 +924,52 @@ sub section_taxonomy_table } push @html, Maasha::XHTML::table_beg( summary => "Taxonomy table", align => 'center', cellpadding => '5px' ); - push @html, Maasha::XHTML::table_row_simple( tr => [ join( " ", @row ) ], align => 'center' ); + push @html, Maasha::XHTML::table_row_simple( tr => [ join( "\n", @row ) ], align => 'center' ); push @html, Maasha::XHTML::table_end; return wantarray ? @html : \@html; } -sub section_taxonomy_select +sub section_clade { - # Martin A. Hansen, November 2009. + # Martin A. Hansen, March 2010. + + # Returns a HTML section with clade selection choices + # for navigating the taxonomy tree. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( @html, $clade, $href ); + + push @html, Maasha::XHTML::h2( txt => "Select clade", class => 'center' ); + + push @html, Maasha::XHTML::table_beg( summary => "Taxonomy select table", align => 'center', cellpadding => '5px' ); + + foreach $clade ( @{ $cookie->{ 'LIST_CLADE' } } ) + { + $href = "$cookie->{ 'SCRIPT' }?page=genome"; + $href .= "&session_id=$cookie->{ 'SESSION_ID' }"; + $href .= "&user=$cookie->{ 'USER' }"; + $href .= "&clade=$clade"; + + push @html, Maasha::XHTML::table_row_simple( tr => [ Maasha::XHTML::ln( txt => $clade, href => $href ) ] ); + } + + push @html, Maasha::XHTML::table_end; + + return wantarray ? @html : \@html; +} + + +sub section_genome +{ + # Martin A. Hansen, March 2010. - # Returns a HTML section with selection choices + # Returns a HTML section with genome selection choices # for navigating the taxonomy tree. my ( $cookie, # cookie hash @@ -492,21 +977,94 @@ sub section_taxonomy_select # Returns a list. - my ( $list, @html, $item, $href ); + my ( @html, $genome, $href ); + + push @html, Maasha::XHTML::h2( txt => "Select genome", class => 'center' ); + + push @html, Maasha::XHTML::table_beg( summary => "Taxonomy select table", align => 'center', cellpadding => '5px' ); + + foreach $genome ( @{ $cookie->{ 'LIST_GENOME' } } ) + { + $href = "$cookie->{ 'SCRIPT' }?page=assembly"; + $href .= "&session_id=$cookie->{ 'SESSION_ID' }"; + $href .= "&user=$cookie->{ 'USER' }"; + $href .= "&clade=$cookie->{ 'CLADE' }"; + $href .= "&genome=$genome"; + + push @html, Maasha::XHTML::table_row_simple( tr => [ Maasha::XHTML::ln( txt => $genome, href => $href ) ] ); + } + + push @html, Maasha::XHTML::table_end; + + return wantarray ? @html : \@html; +} + - $list = "LIST_" . uc $cookie->{ 'PAGE' }; +sub section_assembly +{ + # Martin A. Hansen, March 2010. + + # Returns a HTML section with assembly selection choices + # for navigating the taxonomy tree. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. - push @html, Maasha::XHTML::h2( txt => "Select $cookie->{ 'PAGE' }", class => 'center' ); + my ( @html, $assembly, $href ); - push @html, Maasha::XHTML::table_beg( summary => "Select table", align => 'center', cellpadding => '5px' ); + push @html, Maasha::XHTML::h2( txt => "Select assembly", class => 'center' ); - foreach $item ( @{ $cookie->{ $list } } ) + push @html, Maasha::XHTML::table_beg( summary => "Taxonomy select table", align => 'center', cellpadding => '5px' ); + + foreach $assembly ( @{ $cookie->{ 'LIST_ASSEMBLY' } } ) { - $cookie->{ uc $cookie->{ 'PAGE' } } = $item; + $href = "$cookie->{ 'SCRIPT' }?page=contig"; + $href .= "&session_id=$cookie->{ 'SESSION_ID' }"; + $href .= "&user=$cookie->{ 'USER' }"; + $href .= "&clade=$cookie->{ 'CLADE' }"; + $href .= "&genome=$cookie->{ 'GENOME' }"; + $href .= "&assembly=$assembly"; + + push @html, Maasha::XHTML::table_row_simple( tr => [ Maasha::XHTML::ln( txt => $assembly, href => $href ) ] ); + } + + push @html, Maasha::XHTML::table_end; + + return wantarray ? @html : \@html; +} - $href = cookie_href( $cookie, cookie_page_next( $cookie ) ); - push @html, Maasha::XHTML::table_row_simple( tr => [ Maasha::XHTML::ln( txt => $item, href => $href ) ] ); +sub section_contig +{ + # Martin A. Hansen, March 2010. + + # Returns a HTML section with contig selection choices + # for navigating the taxonomy tree. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( @html, $contig, $href ); + + push @html, Maasha::XHTML::h2( txt => "Select contig", class => 'center' ); + + push @html, Maasha::XHTML::table_beg( summary => "Taxonomy select table", align => 'center', cellpadding => '5px' ); + + foreach $contig ( @{ $cookie->{ 'LIST_CONTIG' } } ) + { + $href = "$cookie->{ 'SCRIPT' }?page=browse"; + $href .= "&session_id=$cookie->{ 'SESSION_ID' }"; + $href .= "&user=$cookie->{ 'USER' }"; + $href .= "&clade=$cookie->{ 'CLADE' }"; + $href .= "&genome=$cookie->{ 'GENOME' }"; + $href .= "&assembly=$cookie->{ 'ASSEMBLY' }"; + $href .= "&contig=$contig"; + + push @html, Maasha::XHTML::table_row_simple( tr => [ Maasha::XHTML::ln( txt => $contig, href => $href ) ] ); } push @html, Maasha::XHTML::table_end; @@ -526,14 +1084,14 @@ sub section_navigate # Returns a list. - my ( @html ); + my ( @html, $nav_val ); + + $nav_val = Maasha::Calc::commify( $cookie->{ 'NAV_START' } ) . "-" . Maasha::Calc::commify( $cookie->{ 'NAV_END' } ); push @html, Maasha::XHTML::table_beg( summary => "Navigation table", align => 'center' ); push @html, Maasha::XHTML::table_row_simple( tr => [ - "Start:", - Maasha::XHTML::text( name => "nav_start", value => Maasha::Calc::commify( $cookie->{ 'NAV_START' } ), size => 20 ), - "End:", - Maasha::XHTML::text( name => "nav_end", value => Maasha::Calc::commify( $cookie->{ 'NAV_END' } ), size => 20 ), + "Position or search term:", + Maasha::XHTML::text( name => "nav_search", value => $nav_val, size => 30 ), Maasha::XHTML::submit( name => "nav_submit", value => "Submit" ), ] ); push @html, Maasha::XHTML::table_end; @@ -559,54 +1117,105 @@ sub section_navigate push @html, Maasha::XHTML::table_end; push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "page", value => "browse" ) ); - push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "user", value => "$cookie->{ 'USER' }" ) ); - push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "clade", value => "$cookie->{ 'CLADE' }" ) ); - push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "genome", value => "$cookie->{ 'GENOME' }" ) ); - push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "assembly", value => "$cookie->{ 'ASSEMBLY' }" ) ); - push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "contig", value => "$cookie->{ 'CONTIG' }" ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "user", value => $cookie->{ 'USER' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "clade", value => $cookie->{ 'CLADE' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "genome", value => $cookie->{ 'GENOME' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "assembly", value => $cookie->{ 'ASSEMBLY' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "contig", value => $cookie->{ 'CONTIG' } ) ); return wantarray ? @html : \@html; } -sub section_browse +sub section_linkout { - my ( $cookie, + # Martin A. Hansen, March 2010. + + # Returns a HTML section for a static link based on information in the cookie. + + my ( $cookie, # cookie hash ) = @_; # Returns a list. - my ( @tracks, $i, @features, $feat, $elem, $file, $surface, $cr, @html, @img ); + my ( $link_out, $link_pdf, $link_svg, @html ); + + $link_out = Maasha::XHTML::ln( + txt => 'link', + href => join( "&", "$cookie->{ 'SCRIPT' }?page=browse", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "nav_start=$cookie->{ 'NAV_START' }", + "nav_end=$cookie->{ 'NAV_END' }", + ), + title => "Static link to this view", + ); - push @features, [ Maasha::BBrowser::Track::track_ruler( $cookie ) ]; - push @features, [ Maasha::BBrowser::Track::track_seq( $cookie ) ]; + $link_pdf = Maasha::XHTML::ln( + txt => 'PDF', + href => join( "&", "$cookie->{ 'SCRIPT' }?page=export_pdf", + "session_id=$cookie->{ 'SESSION_ID' }", + "user=$cookie->{ 'USER' }", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "nav_start=$cookie->{ 'NAV_START' }", + "nav_end=$cookie->{ 'NAV_END' }", + ), + title => "Export view in PDF", + ); + + $link_svg = Maasha::XHTML::ln( + txt => 'SVG', + href => join( "&", "$cookie->{ 'SCRIPT' }?page=export_svg", + "session_id=$cookie->{ 'SESSION_ID' }", + "user=$cookie->{ 'USER' }", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "nav_start=$cookie->{ 'NAV_START' }", + "nav_end=$cookie->{ 'NAV_END' }", + ), + title => "Export view in SVG", + ); - @tracks = Maasha::BBrowser::Track::path_tracks( $cookie ); + push @html, Maasha::XHTML::p( txt => "$link_out $link_pdf $link_svg", class => 'center' ); - for ( $i = 0; $i < @tracks; $i++ ) - { - $cookie->{ 'FEAT_COLOR' } = Maasha::BBrowser::Draw::palette( $i ); + return wantarray ? @html : \@html; +} - push @features, [ Maasha::BBrowser::Track::track_feature( $tracks[ $i ], $cookie ) ]; - } - $file = "fisk.png"; # FIXME +sub section_browse +{ + my ( $cookie, + ) = @_; + + # Returns a list. + + my ( @track_list, $i, @tracks, $track, $elem, $png_data, @html, @img, $x1, $y1, $x2, $y2, $factor, $center ); - $surface = Cairo::ImageSurface->create( 'argb32', $cookie->{ 'IMG_WIDTH' }, $cookie->{ 'TRACK_OFFSET' } ); - $cr = Cairo::Context->create( $surface ); + push @tracks, [ Maasha::BGB::Track::track_ruler( $cookie ) ]; + push @tracks, [ Maasha::BGB::Track::track_seq( $cookie ) ]; - $cr->rectangle (0, 0, $cookie->{ 'IMG_WIDTH' }, $cookie->{ 'TRACK_OFFSET' } ); - $cr->set_source_rgb (1, 1, 1); - $cr->fill; + @track_list = Maasha::BGB::Track::list_track_dir( $cookie->{ 'USER' }, $cookie->{ 'CLADE' }, $cookie->{ 'GENOME' }, $cookie->{ 'ASSEMBLY' }, $cookie->{ 'CONTIG' } ); + + for ( $i = 0; $i < @track_list; $i++ ) + { + $cookie->{ 'FEAT_COLOR' } = Maasha::BGB::Draw::palette( $i ); - foreach $feat ( @features ) { - Maasha::BBrowser::Draw::draw_feature( $cr, $feat ) if $feat; + push @tracks, [ Maasha::BGB::Track::track_feature( $track_list[ $i ], $cookie ) ]; } - Maasha::BBrowser::Draw::file_png( $surface, $file ); + unshift @tracks, [ Maasha::BGB::Track::track_grid( $cookie ) ]; + + $png_data = Maasha::BGB::Draw::render_png( $cookie->{ 'IMG_WIDTH' }, $cookie->{ 'TRACK_OFFSET' }, \@tracks ); push @img, Maasha::XHTML::img( - src => $file, + src => "data:image/png;base64,$png_data", alt => "Browser Tracks", height => $cookie->{ 'TRACK_OFFSET' }, width => $cookie->{ 'IMG_WIDTH' }, @@ -616,17 +1225,103 @@ sub section_browse push @img, Maasha::XHTML::map_beg( name => "browser_map", id => "browser_map" ); - foreach $feat ( @features ) + $factor = ( $cookie->{ 'NAV_END' } - $cookie->{ 'NAV_START' } + 1 ) / $cookie->{ 'IMG_WIDTH' }; + + for ( $i = 0; $i < $cookie->{ 'IMG_WIDTH' }; $i += 5 ) { - foreach $elem ( @{ $feat } ) - { - next if $elem->{ 'type' } eq 'text'; + $x1 = $i; + $y1 = 10; + $x2 = $i + 5; + $y2 = 20; + + $center = int( $cookie->{ 'NAV_START' } + $factor * $i ); + + push @img, Maasha::XHTML::area( + href => join( "&", "$cookie->{ 'SCRIPT' }?page=browse", + "session_id=$cookie->{ 'SESSION_ID' }", + "user=$cookie->{ 'USER' }", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "nav_start=$cookie->{ 'NAV_START' }", + "nav_end=$cookie->{ 'NAV_END' }", + "nav_center=$center", + ), + shape => 'rect', + coords => "$x1, $y1, $x2, $y2", + title => "Center on " . Maasha::Calc::commify( $center ), + ); + } - push @img, Maasha::XHTML::area( - href => cookie_href( $cookie, "export" ) . "&Q_ID=$elem->{ 'id' }", - shape => "rect", - coords => "$elem->{ x1 }, $elem->{ y1 }, $elem->{ x2 }, $elem->{ y2 }", title => "$elem->{ 'title' }", - ); + foreach $track ( @tracks ) + { + foreach $elem ( @{ $track } ) + { + next if $elem->{ 'type' } =~ /grid|text|wiggle/; + + if ( $elem->{ 'type' } eq 'track_name' ) + { + $x1 = $elem->{ 'x1' }; + $y1 = $elem->{ 'y1' } - 10; + $x2 = $elem->{ 'x1' } + 6 * length $elem->{ 'txt' }; + $y2 = $elem->{ 'y1' }; + + if ( Maasha::BGB::Track::track_hide( $cookie, $elem->{ 'track' } ) ) + { + push @img, Maasha::XHTML::area( + href => join( "&", "$cookie->{ 'SCRIPT' }?page=browse", + "session_id=$cookie->{ 'SESSION_ID' }", + "user=$cookie->{ 'USER' }", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "track=$elem->{ 'track' }", + ), + shape => 'rect', + coords => "$x1, $y1, $x2, $y2", + title => qq(Show track: $elem->{ 'txt' }), + ); + } + else + { + push @img, Maasha::XHTML::area( + href => join( "&", "$cookie->{ 'SCRIPT' }?page=browse", + "session_id=$cookie->{ 'SESSION_ID' }", + "user=$cookie->{ 'USER' }", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "track=$elem->{ 'track' }", + ), + shape => 'rect', + coords => "$x1, $y1, $x2, $y2", + title => qq(Hide track: $elem->{ 'txt' }), + ); + } + } + else + { + push @img, Maasha::XHTML::area( + href => join( "&", "$cookie->{ 'SCRIPT' }?page=export", + "session_id=$cookie->{ 'SESSION_ID' }", + "user=$cookie->{ 'USER' }", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "s_beg=$elem->{ 's_beg' }", + "s_end=$elem->{ 's_end' }", + "strand=$elem->{ 'strand' }", + "q_id=$elem->{ 'q_id' }", + ), + shape => 'rect', + coords => "$elem->{ x1 }, $elem->{ y1 }, $elem->{ x2 }, $elem->{ y2 }", + title => "$elem->{ 'title' }", + ); + } } } @@ -651,9 +1346,223 @@ sub section_export # Returns a list. - my ( @html ); + my ( $feat, @row_dna_contig, @html ); + + $feat = $cookie->{ 'Q_ID' } || "[no name]"; + + push @row_dna_contig, Maasha::XHTML::p( txt => qq(Export Feature: "$feat" DNA from Contig: ), class => 'inline' ); + push @row_dna_contig, Maasha::XHTML::p( txt => "$cookie->{ 'CONTIG' } Start: ", class => 'inline' ); + push @row_dna_contig, Maasha::XHTML::text( name => "s_beg", value => Maasha::Calc::commify( $cookie->{ 'S_BEG' } ), size => 15 ); + push @row_dna_contig, Maasha::XHTML::p( txt => "End: ", class => 'inline' ); + push @row_dna_contig, Maasha::XHTML::text( name => "s_end", value => Maasha::Calc::commify( $cookie->{ 'S_END' } ), size => 15 ); + push @row_dna_contig, Maasha::XHTML::p( txt => "Strand: ", class => 'inline' ); + push @row_dna_contig, Maasha::XHTML::menu( name => "strand", options => [ qw( + - ) ], selected => $cookie->{ 'STRAND' } ); + push @row_dna_contig, Maasha::XHTML::submit( name => "export", value => "Export", title => "Fetch DNA from this region" ); + + push @html, Maasha::XHTML::h2( txt => "Export", class => 'center' ); + push @html, Maasha::XHTML::table_beg( summary => "Taxonomy select table", align => 'center' ); + push @html, Maasha::XHTML::table_row_simple( tr => \@row_dna_contig ); + push @html, Maasha::XHTML::table_end; - push @html, Maasha::XHTML::h2( txt => "Export", class => 'center' ); # TODO section_export! + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "page", value => "dna" ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "user", value => $cookie->{ 'USER' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "clade", value => $cookie->{ 'CLADE' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "genome", value => $cookie->{ 'GENOME' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "assembly", value => $cookie->{ 'ASSEMBLY' } ) ); + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::hidden( name => "contig", value => $cookie->{ 'CONTIG' } ) ); + + return wantarray ? @html : \@html; +} + + +sub section_export_pdf +{ + # Martin A. Hansen, March 2010. + + # Returns a HTML section with export table. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( @tracks, @track_list, $i, $file, @html ); + + push @tracks, [ Maasha::BGB::Track::track_ruler( $cookie ) ]; + push @tracks, [ Maasha::BGB::Track::track_seq( $cookie ) ]; + + @track_list = Maasha::BGB::Track::list_track_dir( $cookie->{ 'USER' }, $cookie->{ 'CLADE' }, $cookie->{ 'GENOME' }, $cookie->{ 'ASSEMBLY' }, $cookie->{ 'CONTIG' } ); + + for ( $i = 0; $i < @track_list; $i++ ) + { + $cookie->{ 'FEAT_COLOR' } = Maasha::BGB::Draw::palette( $i ); + + push @tracks, [ Maasha::BGB::Track::track_feature( $track_list[ $i ], $cookie ) ]; + } + + unshift @tracks, [ Maasha::BGB::Track::track_grid( $cookie ) ]; + + $file = "$cookie->{ 'SESSION_DIR' }/$cookie->{ 'USER' }/BGB_export.pdf"; + + Maasha::BGB::Draw::render_pdf_file( $file, $cookie->{ 'IMG_WIDTH' }, $cookie->{ 'TRACK_OFFSET' }, \@tracks ); + + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::ln( txt => "BGB_export.pdf", href => $file ), class => 'center' ); + + return wantarray ? @html : \@html; +} + + +sub section_export_svg +{ + # Martin A. Hansen, March 2010. + + # Export view in SVG format. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( @tracks, @track_list, $i, $file, @html ); + + push @tracks, [ Maasha::BGB::Track::track_ruler( $cookie ) ]; + push @tracks, [ Maasha::BGB::Track::track_seq( $cookie ) ]; + + @track_list = Maasha::BGB::Track::list_track_dir( $cookie->{ 'USER' }, $cookie->{ 'CLADE' }, $cookie->{ 'GENOME' }, $cookie->{ 'ASSEMBLY' }, $cookie->{ 'CONTIG' } ); + + for ( $i = 0; $i < @track_list; $i++ ) + { + $cookie->{ 'FEAT_COLOR' } = Maasha::BGB::Draw::palette( $i ); + + push @tracks, [ Maasha::BGB::Track::track_feature( $track_list[ $i ], $cookie ) ]; + } + + unshift @tracks, [ Maasha::BGB::Track::track_grid( $cookie ) ]; + + $file = "$cookie->{ 'SESSION_DIR' }/$cookie->{ 'USER' }/BGB_export.svg"; + + Maasha::BGB::Draw::render_svg_file( $file, $cookie->{ 'IMG_WIDTH' }, $cookie->{ 'TRACK_OFFSET' }, \@tracks ); + + push @html, Maasha::XHTML::p( txt => Maasha::XHTML::ln( txt => "BGB_export.svg", href => $file ), class => 'center' ); + + return wantarray ? @html : \@html; +} + + +sub section_search +{ + # Martin A. Hansen, November 2009. + + # Returns a HTML section with export table. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( $results, $result, $count, @html, $export, $browse ); + + $results = Maasha::BGB::Track::search_tracks( $cookie ); + + $count = scalar @{ $results }; + + push @html, Maasha::XHTML::h2( txt => "Search", class => 'center' ); + push @html, Maasha::XHTML::p( txt => qq(Results for "$cookie->{ 'SEARCH' }": $count), class => 'center' ); + + if ( $count > 0 ) + { + push @html, Maasha::XHTML::table_beg( summary => "Search table", align => 'center', cellpadding => '5px' ); + push @html, Maasha::XHTML::table_row_simple( tr => [ qw( S_ID S_BEG S_END Q_ID SCORE STRAND HITS ALIGN BLOCK_COUNT BLOCK_BEGS BLOCK_LENS BLOCK_TYPE) ] ); + + foreach $result ( @{ $results } ) + { + $cookie->{ 'CONTIG' } = $result->{ 'S_ID' }; + $cookie->{ 'NAV_START' } = $result->{ 'S_BEG' }; + $cookie->{ 'NAV_END' } = $result->{ 'S_END' }; + $cookie->{ 'S_BEG' } = $result->{ 'S_BEG' }; + $cookie->{ 'S_END' } = $result->{ 'S_END' }; + $cookie->{ 'STRAND' } = $result->{ 'STRAND' }; + $cookie->{ 'Q_ID' } = $result->{ 'Q_ID' }; + + $browse = Maasha::XHTML::ln( + txt => "browse", + href => join( "&", "$cookie->{ 'SCRIPT' }?page=browse", + "session_id=$cookie->{ 'SESSION_ID' }", + "user=$cookie->{ 'USER' }", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "nav_start=$cookie->{ 'NAV_START' }", + "nav_end=$cookie->{ 'NAV_END' }", + ), + ); + + + $export = Maasha::XHTML::ln( + txt => "export", + href => join( "&", "$cookie->{ 'SCRIPT' }?page=export", + "session_id=$cookie->{ 'SESSION_ID' }", + "user=$cookie->{ 'USER' }", + "clade=$cookie->{ 'CLADE' }", + "genome=$cookie->{ 'GENOME' }", + "assembly=$cookie->{ 'ASSEMBLY' }", + "contig=$cookie->{ 'CONTIG' }", + "s_beg=$cookie->{ 'S_BEG' }", + "s_end=$cookie->{ 'S_END' }", + "strand=$cookie->{ 'STRAND' }", + ), + ); + + push @html, Maasha::XHTML::table_row_advanced( + tr => [ { td => $result->{ 'S_ID' } }, + { td => $result->{ 'S_BEG' }, align => 'right' }, + { td => $result->{ 'S_END' }, align => 'right' }, + { td => $result->{ 'Q_ID' } }, + { td => $result->{ 'SCORE' }, align => 'right' }, + { td => $result->{ 'STRAND' } }, + { td => $result->{ 'HITS' }, align => 'right' }, + { td => $result->{ 'ALIGN' } }, + { td => $result->{ 'BLOCK_COUNT' }, align => 'right' }, + { td => $result->{ 'BLOCK_BEGS' } }, + { td => $result->{ 'BLOCK_LENS' } }, + { td => $result->{ 'BLOCK_TYPE' } }, + { td => $browse }, + { td => $export }, + ], class => "monospace" + ); + } + + push @html, Maasha::XHTML::table_end; + } + + return wantarray ? @html : \@html; +} + + +sub section_dna +{ + # Martin A. Hansen, November 2009. + + # Returns a HTML section with extracted DNA. + + my ( $cookie, # cookie hash + ) = @_; + + # Returns a list. + + my ( @html, $beg, $end, $seq ); + + $beg = $cookie->{ 'S_BEG' }; + $end = $cookie->{ 'S_END' }; + $beg =~ tr/,//d; + $end =~ tr/,//d; + + $seq = join ";", ">$cookie->{ 'GENOME' }", $cookie->{ 'ASSEMBLY' }, $cookie->{ 'CONTIG' }, $beg, $end, "$cookie->{ 'STRAND' }\n"; + $seq .= Maasha::BGB::Track::dna_get( $cookie ); + + push @html, Maasha::XHTML::h2( txt => "DNA", class => 'center' ); + push @html, Maasha::XHTML::pre( txt => $seq ); return wantarray ? @html : \@html; } @@ -663,3 +1572,7 @@ sub section_export __END__ + + + # my $t0 = Time::HiRes::gettimeofday(); + # my $t1 = Time::HiRes::gettimeofday(); print STDERR "Time: " . ( $t1 - $t0 ) . "\n";