EMBOSS::GUI::Conf
repository for EMBOSS::GUI site-specific configuration
- Provided by: emboss-explorer (Version: 2.2.0-8)
- Report a bug
repository for EMBOSS::GUI site-specific configuration
Luke McCarthy <lukem@gene.pbi.nrc.ca>
use EMBOSS::GUI::Conf;
$conf = EMBOSS::GUI::Conf->new();
foreach $app ($conf->apps) {
($name, $doc) = @$app;
if (!$conf->is_excluded($name)) {
...
}
}
foreach $group ($conf->groups) {
$group_name = shift @$group;
if (!conf->is_excluded($group_name) {
foreach $app (@$group) {
($name, $doc) = @$app;
...
}
}
}
EMBOSS::GUI::Conf contains site-specific configuration information for EMBOSS::GUI. Consult the source for a description of the variables that can be set.
Public methods are described below:
$subject is the name of an application or application group as it appears in the output from wossname.
None that I know of.
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.