Clinicians, drug companies, and scientists rely on data gathered from non-human brains. Only a relatively small set of data is gathered from human brains and the kinds of human brain data are limited. These reasons alone make a compelling case to understand the similarities and differences in developmental event timing amongst brains across mammalian species. The recent paper “ttime: an R Package for Translating the Timing of Brain Development Across Mammalian Species” (published October 2010 in Neuroinformatics) introduces the current version of a free, open source, and publicly available software package named ttime that runs in R, a free, open source, and publicly available software environment for statistical computing and graphics.
The authors point out that we have a relative abundance of data on brain development for some mammals such as rats, mice, and macaque monkeys but far less for others such as rabbits, cats, and humans. To get a more complete picture they set out to build software that would translate brain development timing data from one mammal, a rat for instance, into a model of brain development timing into another mammal, a human for instance. Previous research has demonstrated that event timing sequences in brain development are conserved across mammalian species so their main task was to capture, as best they could, the transformation rules that take time sequences from the context of the developing brain in one mammal and place them into the context of another.
Here’s a brief tutorial (based on the paper) to get you up and running:
- Download R from the R Project website.
- Install ttime and its dependencies.
Note: Here are the details for installing the ttime R package on a Macintosh computer (simply because that’s what I’m using). Go to R’s Packages & Data menu and select Package Installer. Use the CRAN (binaries) repository and search on ttime. Select ttime in the Package list and check the install dependencies check box and then click on the Install Selected button.
Now you should be able to load the ttime library by typing in the following (> is the R prompt):
>library(ttime)
The ttime package is provided with a test data set named event_data. This data set includes data representing 106 brain development events from 10 different mammals: hamster, mouse, rat, rabbit, spiny mouse, guinea pig, ferret, cat, macaque, and human. The authors pulled these data from published peer reviewed sources. Load the test data set by entering the following:
>data(event_data)
The ttime function translate() uses primate cerebral cortical and limbic interaction terms to predict unknown brain development event timing across mammalian species. While using this model you must pass the translate() function the name of the data file and the number of non-primate species (npsp) represented in the data file. Enter the following to test the translate() function:
>npsp<-8; >results<-translate(event_data, npsp); A scatter plot should appear like in Figure 1 below.

Note: The ttime package includes the ability to investigate phylogenetic proximity amongst species.
The ttime package is a powerful tool that provides the user flexibility to analyze your own data sets as long as the data are compiled into the proper format. A brief reference manual is available here. However, you’ll probably need to read the paper under review and perhaps some of the team’s older papers to get more use out of the package. For those who do not need the flexibility of running and potentially modifying the code and who don’t need to access their own data sets, the team runs a service called Translating Time at www.translatingtime.net. Even those who use the service may find that access to the source code is useful or even critical.