Tag Archive for 'bioinformatics'

Cloudcamb Notes: Biocep

I went to an event called Cloudcamb last night (I love working in Cambridge) organised by Matt (ta very muchly), the evening was very good and informative, but the one thing that really stood out for me was a very interesting presentation on the Biocep project that anyone who uses R (or would like to use R) should be interested in.

Here’s my take on the basics of it and why you would want this - there’s really LOTS more there!!!

The first thing Biocep is (that’s not really advertised much on the site) is that it offers a vastly improved interface to R that has the following tools:

  • Built-in spreadsheet like functionallity
  • Built-in code editor (jEdit)
  • Plug-in architecture for creating custom interfaces to things (similar potential to Matlab’s GUIDE)

There are other R gui’s out there (i.e. Mac and Windows R spring to mind) - but they are not as slick as this.

The second thing biocep gives is that it allows you to run R instances on remote machines (i.e. up in the “cloud”, or on clusters or grid systems in your work place / institute), from your desktop and be able to work collaboratively with other people using fully shared sessions (i.e. both of you can play with shared data, talk and see all of the visuals the other person is seeing all in real-time - it’s really impressive to watch).

Seriously, if you work with R, check it out!

Buy My Book!

Was I really involved in writing something that sounds this classy?!?!

“Modern bioinformatics encompasses a broad and ever-changing range of activities involved with the management and analysis of data from molecular biology experiments. Despite the diversity of activities and applications, the basic methodology and core tools needed to tackle bioinformatics problems is common to many projects. Building Bioinformatics Solutions provides a comprehensive introduction to this methodology, explaining how to acquire and use the most popular development tools, how to apply them to build processing pipelines, and how to make the results available through visualisations and web-based services for deployment either locally or via the Internet. The main development tools covered in this book are the MySQL database management system, the Perl programming language, and the R language for statistical computing. These industry standard open source tools form the core of many bioinformatics projects, both in academia and industry. The methodologies introduced are platform independent, and all the examples that feature have been tested on Windows, Linux and Mac OS. This advanced textbook is suitable for graduate students and researchers in the life sciences who wish to automate analyses or create their own databases and web-based tools. No prior knowledge of software development is assumed. Having worked through the book, the reader should have the necessary core skills to develop computational solutions for their specific research programmes. The book will also help the reader overcome the inertia associated with penetrating this field, and provide them with the confidence and understanding required to go on to develop more advanced bioinformatics skills.”

The book that I am a co-author on, Building Bioinformatics Solutions is shortly going to be available on Amazon (UK) and Amazon (US) as well as other countries.

If you’re looking for an introduction to some of the tools used in the field of Bioinformatics (programming, databases, data analysis) or even just looking for a general introduction to Perl programming, MySQL or R why not check it out. :)

Still here and after more?!?! Why not head on over to bixsolutions.net - the companion site for the book, and take a peek at what’s on offer.

Now get off my lawn! ;)

Installing R/BioConductor on Ubuntu 8.04

The new version of Ubuntu is out, (as if you haven’t heard that by now), so that means a fresh install to play about with and working just the way I want! :D

One of the tools that I currently need (for the thesis work) is R and the BioConductor libraries. So here’s a quick run down on getting them up and installed on Hardy…

First up, run these commands in a terminal:

sudo apt-get install build-essential g77 gfortran
sudo apt-get install refblas3 refblas3-dev zlib1g-dev
sudo apt-get install r-base

This will then install the R base packages and some of the BioConductor packages, along with the gcc and fortran compilers and some other libraries that will be required for the next step.

sudo -s
R

Now at the R prompt, type the following…

source(“http://www.bioconductor.org/biocLite.R”)
biocLite()

Now sit back for a few minutes while your system configures BioConductor for you.

Bio-Linux - Bioinformatics Tools for Linux

Bio-Linux is a specialised Linux disro that provides both standard and cutting edge bioinformatics software tools on a Linux base.

I wrote a post on my old blog a little while back now detailing how to use the packages from Bio-Linux in Ubuntu Linux, but it got missed in the migration (sorry to all those who have been searching for it). Here’s a repost and update for Ubuntu 7.10…

Continue reading ‘Bio-Linux - Bioinformatics Tools for Linux’