In this section
BioPerl15 is an open source project that has a number of bioinformatics utilities. These include reading various bioinformatics file formats from NCBI, EMBL, and other organizations.
The BioPerl distribution can be downloaded from the BioPerl web site or installed from the web. To install it on windows with ActivePerl start up the ActivePerl Perl Package Manager from the start menu and enter the commands
On UNIX use the commands
To test the distribution enter the command
See the INSTALL text file included with the distribution for other options.
Documentation is on the BioPerl web site or type
where Bio::SeqIO should be replaced with the name of the module you need documentation on.
Here is one of the simplest BioPerl programs possible. It imports the module Bio::SeqIO, uses it to read and parse a FASTA file called HD.txt, and prints out the length of the sequence.
If you want to use BioPerl on a web server that you do not have
administrative access to copy all the .pm files to a directory
somewhere, say /home/yourname/lib. A use lib pragma
at the top of your script lets the Perl runtime know where to find the
BioPerl modules. Here is a CGI script to test that out.
Here is another command line program that iterates over the file NCBI genbank format file rna.gbk2 and prints out the ID and description of each locus. Due to the large amount of output I suggest directing the output of this script to another file.
There are no user comments.
Please send ideas and opinions by email at alexamies@gmail.com.