-
-
03 Feb 2021 05:15:14 UTC
- Distribution: BioPerl
- Module version: 1.7.8
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (254 / 7 / 0)
- Kwalitee
Bus factor: 2- License: perl_5
- Activity
24 month- Tools
- Download (7.18MB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- See individual modules
- Dependencies
- AnyDBM_File
- Carp
- Cwd
- DB_File
- Data::Dumper
- Data::Stag
- Digest::MD5
- Dumpvalue
- Error
- Exporter
- Fcntl
- File::Basename
- File::Copy
- File::Path
- File::Spec
- File::Spec::Functions
- File::Temp
- FileHandle
- Getopt::Long
- Graph::Directed
- HTTP::Request::Common
- HTTP::Response
- IO::File
- IO::Handle
- IO::Pipe
- IO::Scalar
- IO::Socket
- IO::String
- IPC::Run
- LWP::UserAgent
- List::MoreUtils
- List::Util
- Math::BigFloat
- Module::Build
- POSIX
- Pod::Usage
- Scalar::Util
- Set::Scalar
- Storable
- Symbol
- Test::Builder
- Test::Builder::Module
- Test::Most
- Test::RequiresInternet
- Text::Balanced
- Text::Wrap
- Tie::Handle
- Tie::RefHash
- Time::HiRes
- UNIVERSAL
- URI
- XML::DOM
- XML::LibXML
- XML::LibXML::Reader
- XML::Parser::PerlSAX
- XML::SAX
- XML::SAX::Base
- XML::SAX::Writer
- XML::Twig
- XML::Writer
- YAML
- base
- constant
- integer
- overload
- parent
- strict
- utf8
- vars
- version
- warnings
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Bio::DB::GFF::Util::Rearrange - rearrange utility
SYNOPSIS
use Bio::DB::GFF::Util::Rearrange 'rearrange'; my ($arg1,$arg2,$arg3,$others) = rearrange(['ARG1','ARG2','ARG3'],@args);
DESCRIPTION
This is a different version of the _rearrange() method from Bio::Root::Root. It runs as a function call, rather than as a method call, and it handles unidentified parameters slightly differently.
It exports a single function call:
- @rearranged_args = rearrange(\@parameter_names,@parameters);
-
The first argument is an array reference containing list of parameter names in the desired order. The second and subsequent arguments are a list of parameters in the format:
(-arg1=>$arg1,-arg2=>$arg2,-arg3=>$arg3...)
The function calls returns the parameter values in the order in which they were specified in @parameter_names. Any parameters that were not found in @parameter_names are returned in the form of a hash reference in which the keys are the uppercased forms of the parameter names, and the values are the parameter values.
BUGS
None known yet.
SEE ALSO
AUTHOR
Lincoln Stein <lstein@cshl.org>.
Copyright (c) 2001 Cold Spring Harbor Laboratory.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install BioPerl, copy and paste the appropriate command in to your terminal.
cpanm BioPerl
perl -MCPAN -e shell install BioPerl
For more information on module installation, please visit the detailed CPAN module installation guide.