Skip to main content
  • Software review
  • Open access
  • Published:

SLIMarray: Lightweight software for microarray facility management

Abstract

Background

Microarray core facilities are commonplace in biological research organizations, and need systems for accurately tracking various logistical aspects of their operation. Although these different needs could be handled separately, an integrated management system provides benefits in organization, automation and reduction in errors.

Results

We present SLIMarray (S ystem for L ab I nformation M anagement of Microarray s), an open source, modular database web application capable of managing microarray inventories, sample processing and usage charges. The software allows modular configuration and is well suited for further development, providing users the flexibility to adapt it to their needs. SLIMarray Lite, a version of the software that is especially easy to install and run, is also available.

Conclusion

SLIMarray addresses the previously unmet need for free and open source software for managing the logistics of a microarray core facility.

Background

Core facilities are a common paradigm in the design of academic, non-profit and commercial biological research organizations. In this model, multiple research groups utilize the specialized resources provided by core facilities, such as sequencing, genotyping and microarray services. Often there is a mechanism by which these facilities charge the individual research groups for the products and services they provide to them.

Managing a core facility typically involves keeping organized and up-to-date inventories of consumables, tracking samples processed, and recording charges to researchers for products and services provided to them. The considerable number of samples processed and the substantial charges that researchers incur necessitate a highly organized and accurate system for managing this information. A simple solution is to use Microsoft Excel for tracking these transactions, but this often requires redundant data entry into multiple spreadsheets, and is prone to error. Lab information management systems (LIMS) software addresses this problem by storing information in interrelated tables with more rigorous data entry mechanisms in place to prevent inaccuracies and reduce redundancy.

Numerous microarray databases exist [1–7], but these primarily address the needs of researchers by allowing them to store, manage and analyze their microarray data. Although some microarray databases provide LIMS capabilities, their features are designed for data management and do not address logistical needs such as inventory and usage fee tracking.

Here we present SLIMarray (S ystem for L ab I nformation M anagement of Microarray s), a database software application designed specifically for microarray core facilities. SLIMarray provides simple interfaces for managing inventory, sample processing and charging information, and automatically creates interrelated data records where appropriate.

Implementation

Architecture

SLIMarray is built using the Ruby on Rails [8] framework for database-backed web applications. Ruby on Rails uses a Model-View-Controller approach, where models are employed to programmatically interact with a database, controllers implement the application logic, and views specify the user interface. The database schema (Figure 1) includes tables containing information about microarray inventories, processing, charges, application configuration, lab groups, and user authentication and authorization. SLIMarray has been designed and tested to support both MySQL and SQLite, and should work, but has not been tested with PostgreSQL, IBM DB2, Oracle and Microsoft SQL Server. The Rails Engines, LoginEngine and UserEngine provide user authentication and authorization control. SLIMarray is deployed using a web server, and is accessed by any number and type of web browser clients.

Figure 1
figure 1

SLIMarray database schema. A diagrammatic depiction of the tables used to store information in SLIMarray and the relationships among them.

Customer interfaces

SLIMarray is primarily intended as a management tool for facility staff, but provides limited access to information relevant to facility customers. Accounts can be created for customers that allow them to submit and view the status of samples, and check their microarray inventories. These customer accounts restrict access to all other areas of SLIMarray.

Microarray inventory management

Microarrays are costly, especially when acquired from commercial vendors, making inventory tracking important in ensuring that array investments are accounted for properly. SLIMarray allows tracking of multiple lab groups' inventories of different chip types, with records of every transaction such as purchasing or using microarrays. Microarrays are accounted for by using the inventory-checking interface, where users physically count their arrays and reconcile them with the inventory numbers in the database. Additionally, inventories are linked to hybridization management.

Sample submission

Microarray core facilities collect information about samples, such as what type of array they should be hybridized to, which inventory the arrays should come from, and how the resulting data should be annotated. SLIMarray provides a sample submission interface for customers to directly enter their sample information into the database, ensuring that sample information is complete and as desired by the customer. The information required of the customer depends upon the software configuration, so that they are not required to provide unnecessary information.

Hybridization entry

The hybridization entry interface (Figure 2) allows facility staff to create records of hybridizations performed, and automatically records accompanying changes to inventories and charges. The hybridization entry interface presents a list of submitted samples. The user selects all or a subset of these, and chooses options that determine how they will be charged. Once the user has compiled a list of samples to hybridize, they are able to reorder the list as desired. Upon creation of the hybridization records, the software produces inventory transactions that record the number of arrays used in the inventories of the appropriate lab groups. Charge records are created and filed under the appropriate lab group's set of charges for the most recent charge period. In addition, if Affymetrix samples are being recorded, files can be output for immediate and automated sample record generation in Affymetrix GeneChip Operating System (GCOS) software [9].

Figure 2
figure 2

Hybridization entry interface. Screenshot showing a web browser view of the interface used to enter information about hybridizations. Other interfaces in SLIMarray are similar in appearance.

Usage charge management

Facility usage charges can be tracked as a means of producing well-organized charge summaries to bill lab groups. Charges are separated into charge periods, for instance monthly periods if that is the billing cycle a facility uses. Within each charge period there can be any number of charge sets (collections of charges for a particular lab group and project). As described in the previous section, entry of hybridizations automatically records costs for the appropriate charge set. Interfaces for managing charge records are available separate from hybridization entry. Charge templates can be created to ease entry of common types of charges. Reports of charges can be output in both PDF and Microsoft Excel format.

Security and administration

Users must log in to gain access to SLIMarray, and are authenticated either using encrypted passwords generated and stored in the database, or optionally by connecting to a Lightweight Directory Access Protocol (LDAP) server. Users may be assigned any number of roles determining their permissions for each interface in the application. Roles are provided for administrators, facility staff and facility customers.

Many of the application configuration settings are stored in the database and can be edited through the web interface, making external configuration files unnecessary. Administration of users and user permissions are also configurable through the application interfaces by users with administrative privileges.

Modular configuration

SLIMarray is configurable in a modular fashion, allowing users to enable or disable functionality to suit the needs of their particular microarray facility. Each of the major types of information tracked, including inventory, hybridizations and charges, is optional. Disabling one or more of these modules will remove menu choices related to it, as well as portions of other modules' interfaces and functionality that are rendered irrelevant. Users choose whether their array platform is Affymetrix, non-Affymetrix or a combination of using both platforms. Other options include GCOS software sample generation, use of SBEAMS [4] as the downstream analysis database, and use of LDAP for user login authentication.

Installation

The software is available in two formats, depending upon the needs of the facility installing it. The SLIMarray Lite distribution is installed simply by downloading an archive file from the SLIMarray website [10] and extracting its contents. This provides the entire application as a single executable file for either Linux or Windows, along with SQLite database files. The inherent limitations of SLIMarray Lite are that it can only use SQLite, it runs a pure-ruby web server, and it is not modifiable for further development.

The full SLIMarray software can either be downloaded as a distribution release, or obtained from the source code repository, both of which are available through the SLIMarray website [10]. The full SLIMarray installation can be configured for deployment with MySQL Server and Lighttpd HTTP Server, although other database and web server options are possible. Installation documentation for SLIMarray and SLIMarray Lite on both Windows and Linux platforms is detailed at the SLIMarray website [10].

A demonstration instance of SLIMarray has been made available through the SLIMarray website [10] to allow users to evaluate the software prior to downloading and installing it.

Results and Discussion

Initial preparation

After installation of SLIMarray, users set their configuration options through the web interface. Names for the web site, organization and facility may be specified, array platform options chosen, and different modules enabled or disabled. GCOS, SBEAMS and LDAP usage are enabled and configured through the web interface as well. These configuration options are described in the SLIMarray Administration Guide (Additional file 1).

Lab groups and chip types must then be created corresponding to the lab groups that will be served and the chip types that are used by those lab groups. Initial inventories are established by creating chip transactions to reflect the physical inventories at the time database tracking begins.

Daily workflow

In conjunction with physically giving their samples to the microarray core facility, customers will use the sample submission interface to provide necessary information to the facility staff. Customer interfaces to SLIMarray are described in the SLIMarray Customer Guide (Additional file 3).

Prior to performing hybridizations, facility staff will create a hybridization list by selecting samples that their customers have submitted and adding some additional information. Upon completion of the hybridization records, SLIMarray creates chip transaction records accounting for the hybridized microarrays, and charges are produced detailing the costs incurred for those hybridizations. A printable table of hybridization information, which can be taped into a technician's lab notebook, is generated after the hybridization records are entered. Documentation of facility tasks is provided in the SLIMarray Facility Staff Guide (Additional file 2).

Periodic tasks

Less frequent tasks include performing inventory checks and generating charge reports. Users may choose to establish a regular schedule for physically checking microarray inventories and reconciling them against the inventory records in the database.

At the end of each billing cycle users will edit and add charges as needed to the charge sets for each lab group and project, in addition to those created in tandem with hybridization data entry. After the charge sets for the current charge period are complete, users will use the PDF or Excel generation functions to produce documents that can be given to the lab groups and others involved with the billing process.

Further development

As an open source application developed in the Ruby on Rails framework, SLIMarray is well suited for further enhancements by users seeking to alter or add software functionality.

Conclusion

SLIMarray is a free and open source tool for microarray core facility management. It is easy to install without advanced knowledge of computers. It is highly configurable, modular and extensible, allowing users to benefit from the software modules they need, and modify it to suit their needs.

Availability and requirements

â—‹ MySQL Server (optional)

â—‹ Lighttpd or Apache HTTP Server (optional)

  • License: GNU General Public License version 2

  • Any restrictions to use by non-academics: None

References

  1. Ball CA, Awad IA, Demeter J, Gollub J, Hebert JM, Hernandez-Boussard T, Jin H, Matese JC, Nitzberg M, Wymore F, Zachariah ZK, Brown PO, Sherlock G: The Stanford Microarray Database accommodates additional microarray platforms and data formats. Nucleic Acids Res. 2005, 33 (Database issue): D580-2.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  2. https://genes.med.virginia.edu: GEOSS Home Page. [https://genes.med.virginia.edu]

  3. Killion PJ, Sherlock G, Iyer VR: The Longhorn Array Database (LAD): an open-source, MIAME compliant implementation of the Stanford Microarray Database (SMD). BMC Bioinformatics. 2003, 4: 32.

    Article  PubMed Central  PubMed  Google Scholar 

  4. Marzolf B, Deutsch EW, Moss P, Campbell D, Johnson MH, Galitski T: SBEAMS-Microarray: Database software supporting genomic expression analyses for systems biology. BMC Bioinformatics. 2006, 7 (1): 286.

    Article  PubMed Central  PubMed  Google Scholar 

  5. Maurer M, Molidor R, Sturn A, Hartler J, Hackl H, Stocker G, Prokesch A, Scheideler M, Trajanoski Z: MARS: microarray analysis, retrieval, and storage system. BMC Bioinformatics. 2005, 6 (1): 101.

    Article  PubMed Central  PubMed  Google Scholar 

  6. Saal LH, Troein C, Vallon-Christersson J, Gruvberger S, Borg A, Peterson C: BioArray Software Environment (BASE): a platform for comprehensive management and analysis of microarray data. Genome Biol. 2002, 3 (8): SOFTWARE0003.

    Article  PubMed Central  PubMed  Google Scholar 

  7. Theilhaber J, Ulyanov A, Malanthara A, Cole J, Xu D, Nahf R, Heuer M, Brockel C, Bushnell S: GECKO: a complete large-scale gene expression analysis platform. BMC Bioinformatics. 2004, 5 (1): 195.

    Article  PubMed Central  PubMed  Google Scholar 

  8. http://www.rubyonrails.org/: Ruby on Rails. [http://www.rubyonrails.org/]

  9. http://www.affymetrix.com: Affymetrix. [http://www.affymetrix.com]

  10. http://slimarray.systemsbiology.net: SLIMarray. [http://slimarray.systemsbiology.net]

Download references

Acknowledgements

The authors are grateful to David Campbell for assistance in installation and interface testing as well as Eric Deutsch and Lloyd Hanberg for assistance with the software website.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Bruz Marzolf.

Additional information

Authors' contributions

BM conceived the project, designed and implemented the software, documented the installation procedure, wrote the administrator documentation and drafted the manuscript. PT contributed to and edited the manuscript, tested the software and installation procedures, and wrote the facility staff and customer documentation.

Electronic supplementary material

13029_2006_5_MOESM1_ESM.pdf

Additional file 1: SLIMarray Administration Guide. The SLIMarray Administration Guide describes software configuration and managing user permissions (functions that are accessible to users with Administrator privileges). (PDF 279 KB)

13029_2006_5_MOESM2_ESM.pdf

Additional file 2: SLIMarray Facility Staff Guide. Daily workflow and periodic tasks performed by facility staff are covered in the SLIMarray Facility Staff Guide. (PDF 327 KB)

13029_2006_5_MOESM3_ESM.pdf

Additional file 3: SLIMarray Customer Guide. Sample submission and management, as well as microarray inventory browsing, are described in the SLIMarray Customer Guide. (PDF 209 KB)

Authors’ original submitted files for images

Below are the links to the authors’ original submitted files for images.

Authors’ original file for figure 1

Authors’ original file for figure 2

Rights and permissions

This article is published under license to BioMed Central Ltd. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Marzolf, B., Troisch, P. SLIMarray: Lightweight software for microarray facility management. Source Code Biol Med 1, 5 (2006). https://doi.org/10.1186/1751-0473-1-5

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1751-0473-1-5

Keywords