Brightsurf Science News and Current Science News Events
 

Buy Mastering Perl for Bioinformatics by James D. Tisdall available and for sale on Brightsurf


Previous Page

View Larger Image

Mastering Perl for Bioinformatics


by James D. Tisdall

List Price: $39.95
Price: $26.37
You Save: $13.58 (34%)
Available: Usually ships in 24 hours
Sales Rank: 70018
Studio: O'Reilly Media, Inc.
Binding: Paperback
Number Of Pages: 377
Publication Date: December 31, 1969
Publisher: O'Reilly Media, Inc.


EDITORIAL REVIEWS

Product Description
Historically, programming hasn't been considered a critical skill for biologists. But now, with access to vast amounts of biological data contained in public databases, programming skills are increasingly in strong demand in biology research and development. Perl, with its highly developed capacities in string handling, text processing, networking, and rapid prototyping, has emerged as the programming language of choice for biological data analysis.

"Mastering Perl for Bioinformatics" covers the core Perl language and many of its module extensions, presenting them in the context of biological data and problems of pressing interest to the biological community. This book, along with "Beginning Perl for Bioinformatics," forms a basic course in Perl programming. This second volume finishes the basic Perl tutorial material (references, complex data structures, object-oriented programming, use of modules--all presented in a biological context) and presents some advanced topics of considerable interest in bioinformatics.

The range of topics covered in "Mastering Perl for Bioinformatics" prepares the reader for enduring and emerging developments in critical areas of bioinformatics programming such as:

Gene finding

String alignment

Methods of data storage and retrieval (SML and databases)

Modeling of networks (graphs and Petri nets)

Graphics (Tk)

Parallelization

Interfacing with other programming languages

Statistics (PDL)

Protein structure determination

Biological models of computation (DNA Computers)

Biologists and computer scientists who have conquered the basics of Perl and are ready to move even further in their mastery of this versatile languagewill appreciate the author's well-balanced approach to applying Perl's analytical abilities to the field of bioinformatics. Full of practical examples and real-world biological problem solving, this book is a must for any reader wanting to move beyond beginner level Perl in bioinformatics.



CUSTOMER REVIEWS (Average Customer Rating: 4.0 based on 8 reviews)

Only chapters 4, 5 and 9 make it a worthwhile "Masters" book  
This book is definitely written for the biologist that knows some perl and not the experienced perl programmer. To the biologists who have some experience, this book will open up many new possibilities, but to a person with a few years of perl experience, many sections are skimpy and wasteful on topics better covered by other Perl books.

For example, for anyone with truely massive datasets, it might have been worth the mention of the performance cost/benefits of using BerkleyDBs and hash joins (180-3500 times). With improvements of 2-3 orders of magnitude for large sets, it would have been worth a complementary example in chapter 6 so that readers can weigh the alternatives for certain situations.

The book, however, is well worth the price just for chapters 4, 5 and 9.

4) Sequence Formats and Inheritance
5) A Class for Restriction Enzymes
9) Introduction to Bioperl

March 11, 2007

A good follow-on to Tisdall's other Perl book  
This book is a continuation of Tisdall's "Beginning Perl for Bioinformatics" and thus illustrates more advanced Perl programming techniques. This book not only talks about Perl programming, but it goes into some detail on the subject of bioinformatics itself. It is assumed that the CS-type reader has a good understanding of biology and the goals of bioinformatic programming. Otherwise, the examples and projects within the book will not make sense. The following is a description of the book's contents:

Part I: OBJECT-ORIENTED PROGRAMMING IN PERL
Chapter 1. Modular Programming with Perl - Talks about using modules so that other people can reuse your programs and you can reuse other people's modules in your own programs.

Chapter 2. Data Structures and String Algorithms - Talks about all of the different data structures available through Perl and how to build up special structures in Perl that you might need to describe complex data. Also mentions various string algorithms that are used in analyzing biological data and implements them in Perl.

Chapter 3. Object-Oriented Programming in Perl - Introduces object-orientation in Perl via a module that includes a class that keeps track of genes.

Chapter 4. Sequence Formats and Inheritance - How to convert sequence files into alternate formats such as FASTA and GCG. The object-oriented concept of inheritance is also introduced.

Chapter 5. A Class for Restriction Enzymes - By writing a more complex class, you get a bigger dose of object-orientated programming in biology.

Part II: PERL AND BIOINFORMATICS
Chapter 6. Perl and Relational Databases - Talks about SQL and the design of relational databases. MySQL is examined specifically.

Chapter 7. Perl and the Web - You learn about web programming in Perl by seeing how to put a laboratory on the Web via Perl and CGI.

Chapter 8. Perl and Graphics - Graphics programming in Perl is demonstrated when you learn to write a program that displays changing data to the Web. The graphical Perl module PD is discussed and demonstrated in a program.

Chapter 9. Introduction to Bioperl - Introduces the reader to Bioperl, which is a group of open source Perl modules used for bioinformatics programming. They provide many basic facilities so you don't have to worry about them.

Part III: Appendixes
Appendix A. Perl Summary
Appendix B. Installing Perl

I really thought this was a 5-star book. However, it is not obvious from the title that this is really volume two of a two volume set of books on Perl programming for the biologist, so I can see where the lower ratings might have come from.
January 01, 2007

Perhaps the CGI could have been omitted?  
This is the sequel to his earlier beginner's book on Perl. Now, he goes further into usages of Perl. While experienced programmers will not find these terribly challenging, they are not the intended audience.

Of the topics, the most important is where he shows you how to interface with a SQL database. Given the sheer mass of sequence data generated these days, it is inevitable that efficient database usage be done. So he gives a quick tour of relational database design. With examples of how Perl has modules to submit and query the database. The treatment is somewhat cursory, since he has other, non-database topics to cover.

Of those, he includes CGI programming. This might be questionable. CGI code has proved incredibly hard to scale. Maybe he felt the necessity to include code for handling web servers. Unfortunately, a typical reader won't have enough experience to be aware of CGI's problems. The danger is that she actually starts coding CGI Perl. The true debugging and maintenance costs will not show up till later.
September 06, 2005

Good Companion text  
This first half of the book focuses entirely on Object-Oriented(OO) Perl. The second half follows up with a general survey of various perl implementations of particular programming issues involving databasing, cgi, graphics, modules, etc, and BioPerl.

This book does a good job of applying Perl in OO for Biology in the first half of the book. In the second half he overviews a few broad topics in bioinformatics; he doesn't go super specific, but its a sufficient overview and for me sparked more interest in understanding how I can use perl to handle my informatics issues.

In the first half, the author does an excellent job on detailing the ins and outs of perl references and how to construct complex data structures. Indeed they are a bit strange looking at first, but the author breaks it down really good so pretty much anyone can understand it.

For me the most intriguing part of the book was in the second half, which included relational databases, graphics, and bioperl. In particular, the chapter that covers Perl DBI and DBD::mysql was really cool. That secion was very helpful for me because I am familiar with php/mysql, but have not ever used Perl to interact with Mysql before.

I especially liked the gif draw aka GD chapter. I had no idea how cool GD is. But moreover how it can be integrated with Perl to generate really cool looking plots. Before this book I always used gnuplot. But Tisdall shows you how to get to work with GD pretty good using basic practical examples.

The chapter on BioPerl was especially helpful as well. In particular, he shows you what he did to install the beast. He shows you how to use the CPAN shell and again its really beneficial to read through. It motivated me to pursue other topics in bioperl and how I can use it to query different ncbi databases for example.

Overall, the text provided a good overview on OO Perl and on various other topics involving Perl for Bioinformatics in general. I am glad I bought it. It was really very practical/useful - I refer to it all the time actually!
June 24, 2005

Great book, leads to others for true mastery  
Published in late 2003, this clearly-written book picks up where "Beginning Perl for Bioinformatics" leaves off. Perl is very commonly used in the field of bioinformatics, and this book does a good job of surveying the more advanced topics in perl from the bioinformatics point-of-view. For a more thorough treatment of each of these topics though, the student will need to explore more specialized titles.

While Tisdall's first volume teaches the core of procedural programming in Perl, this one takes you into the world of object-oriented (OO) programming. The first two chapters explore namespaces, modules, packages, references and data structures, all of which are prerequisites to OO programming. Common bioinformatics algorithms are introduced such as dynamic programming and approximate string matching.

The next three chapters, 3-5, are the meat of this title. Here objects, methods and classes are introduced. Rather than just throwing out independent examples, these topics are developed by starting and building upon a Gene class, the first of several through which Tisdall guides the reader. Due to the practicality of these examples, they can even be used and improved by the reader for use in their own work.

After this decent treatment of OO programming the book takes a turn into other realms of perl, each of which seems to have been written as a short introduction and for which other O'Reilly titles offer more complete coverage. These topics include the use of Perl to access relational databases, CGI programming and graphics generation using GD. If interested in any of these the reader should check out "Programming the Perl DBI", "CGI Programming with Perl" and "Perl Graphics Programming", respectively.

Tisdall wraps up with a much-needed coverage of Bioperl, a large collection of Perl modules for common bioinformatics operations. I looked forward to this section most of all and was fairly disappointed with its brief, 28-page coverage. The entire chapter can currently be downloaded for free from O'Reilly's website as a PDF, but the Bioperl website has better examples and even a contributed course, though good documentation is still lacking in some areas.

In all, I like this book because it does a good review of introducing object-oriented programming in Perl using relevant bioinformatics examples and introduces the reader to other topics including the DBI, CGI, and GD modules. While I believe this makes the book very useful, the coverage of each of the topics in this book will certainly not give the reader a mastery of any of them. For that, one will need to check out the three previously mentioned titles, along with "Learning Perl Objects, References & Modules." This book does a fine job of introducing these four titles from the bioinformatician's perspective.
August 30, 2004


SIMILAR PRODUCTS

Beginning Perl for Bioinformatics
by James Tisdall

Blast
by Ian Korf, Mark Yandell, Joseph Bedell

Developing Bioinformatics Computer Skills
by Cynthia Gibas, Per Jambeck

Learning Perl, Second Edition
by Randal L. Schwartz, Tom Christiansen, Larry Wall

Bioinformatics For Dummies (For Dummies (Math & Science))
by Jean-Michel, Ph. D. Claverie, Cedric, Ph.D. Notredame

© 2008 BrightSurf.com