Build Status

Description

Here we have command-line utilities that are wrappers of popular BioPerl classes (Bio::SeqIO, Bio::Seq, Bio::AlignIO, Bio::SimpleAlign, etc). The motivation is to relieve BioPerl users from writing full-blown scripts for routine manipulations of sequences, alignments, trees, and others. For common operations of sequences and alignments, bp-utils make it easy to create workflows with a single BASH script containing a combination of bp-utils calls (and no Perl or BioPerl coding is necessary).

Internally, the programs follow a "Wrap, don't Write" design principle. That is, we have full faith in the robustness of the BioPerl development framework. As such, bp-utils methods should ALL be wrappers to BioPerl methdos so that exceptions can be handled properly by BioPerl.

In reality, though, some methods are new and unique to this package. In the future, all non-wrapper methods in bp-utils should ideally be re-factored into BioPerl class methods. This way, the bp-utils layer could be as thin as possibe and new methods could be added with minimal coding.

See BioUtils for more information.

Dependencies

You can check your version of perl using

perl -v

and your version of BioPerl using

perl -MBio::Root::Version -Mversion -e 'print version->parse($Bio::Root::Version::VERSION)->normal,"\n"'

in a terminal.

Install & Test from git:

$ git clone https://github.com/bioperl/bp-utils
$ cd bp-utils
$ cpan Module::Build  # may need sudo
$ perl ./Build.PL
$ ./Build installdeps
$ ./Build
$ make check  # runs both Perl and Bash test scripts
$ ./Build install # may require sudo or root access

Install & Test (assuming a UNIX/Linux-like environment)

Get Help

Developers, Contact, Citation

Checklist for adding a method (for developers):