easy as absee
1. Introduction
absee is a friendly ABIF reader in Ruby.
Three years ago, I desperately needed to analyze the trace values from DNA sequencing chromatograms (in the form of ABIF files). To my frustration, none of the available ABIF readers exported raw data. Even today, while lots of software are able to visualize ABIF files, very few allow for scripted inputs and custom manipulation of outputs. I want a ABIF reader that simply extracts the data and can be easily incorporated into other projects. Hence, I created absee.
absee is a Ruby gem. It has no GUI, no fluff. It simply reads the ABIF files and returns the values in six arrays, an array for each of the trace data for ACGT at discreet intervals, a called sequence, and an array of peak indexes corresponding to the called sequence.
% irb >> require 'absee' => true >> readAB("my_sequence.ab1")
With a simple Ruby script, it can be incorporated to rapidly read and process many ABIF files and pipe the data for further downstream processing. absee is a very nifty tool, one that I wish I had three years ago. The above code works for versions less than 0.1.0.0.
[update: new version as a Ruby Module]
2. Background
ABIF is a binary file format, usually with an .ab1 extension. It contains a trace value for A, C, G, and T at each point for a interval. Most ABIF viewing software will interpolate those values at the points to display sinusoidal lines.
ABIF files also contain estimated bases and peak indexes. The way DNA sequencing extracts a sequence from from trace data is to use a base-calling algorithm. The base-calling algorithm will estimate a peak in the trace data and determine a called-base for the peak. If peaks from more than one trace overlap and their values are sufficiently close, the algorithm may use N to denote uncertainty of the base for that peak, and lower the quality score. The sequence of called-bases is the estimated DNA sequence corresponding to a chromatogram.
3. Details
Converting from the ABIF binary files to readable values was no small feat. Even with its file format architecture ready, I still needed a little guidance. I found an open-source ABIF viewer years ago (now no longer available) and translated absee from its ABIF reader.
The primary method to call is readAB. It opens the ABIF file, checking the filetype and version. Major ABIF versions greater than 1 are not supported, due to possible different encodings. If the check fails, readAB will return six empty arrays.
readAB(filename)
- parameters:
- filename: a string containing the filename (including the path and extensions)
- returns:
- six arrays, which are trace data for A, C, G, T, called sequence, and peak indexes
There’s more documentation in absee‘s yardoc / RDoc, as well as the source code on github.
4. Source Code
The source code for version 0.0.2.3 can be found at the absee github repository.