EMBOSS::ACD(3pm) | User Contributed Perl Documentation | EMBOSS::ACD(3pm) |
EMBOSS::ACD - parse EMBOSS ACD (AJAX Command Definition) files
Luke McCarthy <lukem@gene.pbi.nrc.ca>
use EMBOSS::ACD; $acd = EMBOSS::ACD->new($acdfile); $application = $acd->name; $description = $acd->documentation; @groups = $acd->groups; foreach $parameter ($acd->param) { while (($attribute, $value) = each %$parameter) { ... } }
EMBOSS::ACD parses EMBOSS Ajax Command Definition files and provides object-oriented access to the data contained therein.
For a complete specification of the ACD format, see http://emboss.sourceforge.net/developers/acd
Note that no checks are performed to ensure that the ACD file is semantically valid. Specifically, datatypes and attributes that aren't defined in the specification can occur in the file and will be parsed as normal. This is a good thing, as the module remains useful even if new datatypes are added by local developers or the EMBOSS crew.
Public methods are described below:
$acdfile is the full path to a valid ACD file.
If no parameter is specified, a list of all parameters is returned. The members of the list are hash references as described above.
Note that, in accordance with the ACD specification, attribute names are not expanded if they are abbreviated in the ACD file.
$param is either undefined (see above) or the name of the desired parameter.
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.
2018-10-09 | perl v5.26.2 |