.\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .if !\nF .nr F 0 .if \nF>0 \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} .\} .\" ======================================================================== .\" .IX Title "EMBOSS::GUI 3pm" .TH EMBOSS::GUI 3pm "2018-10-09" "perl v5.26.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" EMBOSS::GUI \- provide web\-based access to EMBOSS .SH "AUTHOR" .IX Header "AUTHOR" Luke McCarthy .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& use EMBOSS::GUI; \& \& $emboss = EMBOSS::GUI\->new(); \& \& $emboss\->intro_page; \& $emboss\->about_page; \& $emboss\->menu_page; \& $emboss\->app_page; \& $emboss\->help_page; \& $emboss\->default_page; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\s-1EMBOSS::GUI\s0 provides a simple web-based interface to the \s-1EMBOSS\s0 suite of bioinformatics tools. The distribution should have included a sample \s-1CGI\s0 script that wraps the module appropriately. .PP Alternatively, \s-1EMBOSS::GUI\s0 can be used to gather information about the local \&\s-1EMBOSS\s0 installation. Public methods for that purpose are described below: .IP "new(%args)" 4 .IX Item "new(%args)" Returns a new \s-1EMBOSS::GUI\s0 object. .Sp \&\f(CW%args\fR is a hash of optional named arguments. The following arguments are \&\f(CW%recognized:\fR .RS 4 .ie n .IP "html => $object" 4 .el .IP "html => \f(CW$object\fR" 4 .IX Item "html => $object" Specifies an alternative \s-1HTML\s0 renderer object to use when generating the web interface. See \s-1EMBOSS::GUI::XHTML\s0 for the methods the replacement object must implement. .RE .RS 4 .RE .IP "\fIgo()\fR" 4 .IX Item "go()" Process \s-1CGI\s0 arguments and display the corresponding page. .IP "\fIintro_page()\fR" 4 .IX Item "intro_page()" Generates an introductory page describing \s-1EMBOSS\s0 and the \s-1GUI.\s0 .IP "\fIabout_page()\fR" 4 .IX Item "about_page()" Generates a page describing the local \s-1EMBOSS\s0 configuration, including the version and filesystem location of each perl module required by the \s-1GUI.\s0 .IP "\fImenu_page()\fR" 4 .IX Item "menu_page()" Generates the main menu page. .IP "\fIapp_page()\fR" 4 .IX Item "app_page()" Generates the application-specific input page or runs an \s-1EMBOSS\s0 application and generates the output page. .IP "\fIhelp_page()\fR" 4 .IX Item "help_page()" Generates the application-specific manual page. .IP "\fIoutput_page()\fR" 4 .IX Item "output_page()" Generates the application output page, or a placeholder page if the application is still running. .IP "\fIdefault_page()\fR" 4 .IX Item "default_page()" Generates a default page according to the current configuration. .IP "\fIframeset_page()\fR" 4 .IX Item "frameset_page()" Generates a page that sets up the menu and main content frames. .IP "\fIapps()\fR" 4 .IX Item "apps()" Returns a list of available \s-1EMBOSS\s0 applications. Each element of the list is a reference to an array containing the name and description of an application. .IP "\fIgroups()\fR" 4 .IX Item "groups()" Returns a list of application groups. Each element of the list is a reference to an array containing the name of the group and a list of applications belonging to that group (each application is in turn a reference to an array as described in \fIapps()\fR above.) Note that an individual application can appear in multiple groups. .IP "is_excluded($subject)" 4 .IX Item "is_excluded($subject)" Returns true if the subject is being excluded from public display, false otherwise. .Sp \&\f(CW$subject\fR is the name of an application or application group as it appears in the output from wossname. .IP "\fIdatabases()\fR" 4 .IX Item "databases()" Returns a list of available databases. Each element of the list is the name of a database, suitable for use in a \s-1USA.\s0 .SH "BUGS" .IX Header "BUGS" None that I know of... .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright (c) 2004 Luke McCarthy. All rights reserved. This program is free software. You may copy or redistribute it under the same terms as Perl itself.