Neha Patil (Editor)

BioJava

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Original author(s)
  
Andreas Prlić

Development status
  
Active

Repository
  
github.com/biojava


Initial release
  
2002; 15 years ago (2002)

Stable release
  
4.2.1 / January 15, 2016; 13 months ago (2016-01-15)

Preview release
  
4.2.2 / June 15, 2016; 8 months ago (2016-06-15) nightly builds

BioJava is an open-source software project dedicated to provide Java tools to process biological data. BioJava is a set of library functions written in the programming language Java for manipulating sequences, protein structures, file parsers, Common Object Request Broker Architecture (CORBA) interoperability, Distributed Annotation System (DAS), access to AceDB, dynamic programming, and simple statistical routines. BioJava supports a huge range of data, starting from DNA and protein sequences to the level of 3D protein structures. The BioJava libraries are useful for automating many daily and mundane bioinformatics tasks such as to parsing a Protein Data Bank (PDB) file, interacting with Jmol and many more. This application programming interface (API) provides various file parsers, data models and algorithms to facilitate working with the standard data formats and enables rapid application development and analysis. These libraries have also been used in developing various extended analysis tools! for example:

Contents

  • MUSI: an integrated system to identify multiple specificity from very large peptide or nucleic acid data sets.
  • JEnsembl: a version-aware Java API to Ensembl data systems.
  • Expression profiling of signature gene sets with trinucleotide threading
  • Resolving the structural features of genomic islands: a machine learning approach
  • Utility library for structural bioinformatics
  • The BioJava project grew out of work by Thomas Down and Matthew Pocock to create an API to simplify development of Java-based Bioinformatics tools. BioJava is an active open source project that has been developed over more than 12 years and by more than 60 developers. BioJava is one of a number of Bio* projects designed to reduce code duplication. Examples of such projects that fall under Bio* apart from BioJava are BioPython, BioPerl, BioRuby, EMBOSS etc.

    Version 3.0.5 was a major update to the prior versions. It contained several independent modules. The old project has been moved to a separate project called BioJava-legacy project.

    Features

    BioJava provides software modules for many of the typical tasks of bioinformatics programming. These include:

  • Accessing nucleotide and peptide sequence data from local and remote databases
  • Transforming formats of database/ file records
  • Protein structure parsing and manipulation
  • Manipulating individual sequences
  • Searching for similar sequences
  • Creating and manipulating sequence alignments
  • History and publications

    In the year 2008, BioJava's first Application note was published. It was migrated from its original CVS repository to Git hub on April 2013.

    In October 2012, the most recent paper on BioJava was published. As of November 2012 Google Scholar counts more than 130 citations.

    Modules

    During 2014-2015, large parts of the original code base were rewritten. BioJava 3 is a clear departure from the version 1 series. It now consists of several independent modules built using an automation tool called Apache Maven. These modules provide state-of-the-art tools for protein structure comparison, pairwise and multiple sequence alignments, working with DNA and protein sequences, analysis of amino acid properties, detecting protein modifications, predicting disordered regions in proteins, and parsers for common file formats using a biologically meaningful data model. The original code has been moved into a separate BioJava legacy project, which is still available for backward compatibility.

    The following sections will describe several of the new modules and highlight some of the new features that are included in the latest version of BioJava.

    Core Module

    This module provides Java classes to model amino acid or nucleotide sequences. The classes were designed so that the names are familiar and make sense to biologists and also provide a concrete representation of the steps in going from a gene sequence to a protein sequence for computer scientists and programmers.

    A major change between the legacy BioJava project and BioJava3 lies in the way framework has been designed to exploit then-new innovations in Java. A sequence is defined as a generic interface allowing the rest of the modules to create any utility that operates on all sequences. Specific classes for common sequences such as DNA and proteins have been defined in order to improve usability for biologists. The translation engine really leverages this work by allowing conversions between DNA, RNA and amino acid sequences. This engine can handle details such as choosing the codon table, converting start codons to methionine, trimming stop codons, specifying the reading frame and handing ambiguous sequences.

    Special attentions has been paid to designing the storage of sequences to minimize space needs. Special design patterns such as the Proxy pattern allowed the developers to create the framework such that sequences can be stored in memory, fetched on demand from a web service such as UniProt, or read from a FASTA file as needed. The latter two approaches save memory by not loading sequence data until it is referenced in the application. This concept can be extended to handle very large genomic datasets, such as NCBI GenBank or a proprietary database.

    Protein structure modules

    The protein structure modules provide tools to represent and manipulate 3D biomolecular structures. They focus on protein structure comparison.

    The following algorithms have been implemented and included in BioJava.

  • FATCAT algorithm for flexible and rigid body alignment.
  • The standard Combinatorial Extension (CE) algorithm.
  • A new version of CE that can detect circular permutations in proteins.
  • These algorithms are used to provide the RCSB Protein Data Bank (PDB) Protein Comparison Tool as well as systematic comparisons of all proteins in the PDB on a weekly basis.

    Parsers for PDB and mmCIF file formats allow the loading of structure data into a reusable data model. This feature is used by the SIFTS project to map between UniProt sequences and PDB structures. Information from the RCSB PDB can be dynamically fetched without the need to manually download data. For visualization, an interface to the 3D viewer Jmol http://www.jmol.org/ is provided. The team claims that work is underway to improve interaction with the RCSB PDB viewers.

    Below is an outline of the code to initialize a window that will display and compare two protein sequences. Please bear in mind that this is just an outline of the code. To make this work one will need to import the correct found in the "org.biojava.bio.structure" package and add also handle exceptions by using a try-catch block.

    The code aligns the two protein sequences "4hhb.A" and "4hhb.B" based on the FATCAT rigid algorithm.

    Genome and Sequencing modules

    This module is focused on the creation of gene sequence objects from the core module. This is realised by supporting the parsing of the following popular standard file formats generated by open source gene prediction applications:

  • GTF files generated by GeneMark
  • GFF2 files generated by GeneID
  • GFF3 files generated by Glimmer
  • Then the gene sequence objects are written out as a GFF3 format and is imported into GMOD. These file formats are well defined but what gets written in the file is very flexible.

    The following code example takes a 454scaffold file that was used by genemark to predict genes and returns a collection of ChromosomeSequences. Each chromosome sequence maps to a named entry in the fasta file and would contain N gene sequences. The gene sequences can be +/- strand with frame shifts and multiple transcriptions.

    Passing the collection of ChromosomeSequences to GeneFeatureHelper.getProteinSequences would return all protein sequences. You can then write the protein sequences to a fasta file.

    You can also output the gene sequence to a fasta file where the coding regions will be upper case and the non-coding regions will be lower case

    You can easily write out a gff3 view of a ChromosomeSequence with the following code.

    For providing input-output support for several common variants of the FASTQ file format from the next generation sequencers, a separate sequencing module is provided. It is called the Sequence Module and is contained in the package org.biojava3.sequencing.io.fastq. For samples on how to use this module please go to this link.

    Work is in progress towards providing a complete set of java classes to do conversions between different file formats where the list of supported gene prediction applications and genome browsers will get longer based on end user requests.

    Alignment module

    This module contains several classes and methods that allow users to perform pairwise and multiple sequence alignment.

    Pairwise sequence alignment

    For optimal global alignment, BioJava implements the Needleman-Wunsch algorithm and for performing local alignments the Smith and Waterman's algorithm has been implemented. The outputs of both local and global alignments are available in standard formats.

    An example on how to use the libraries is shown below.

    An example call to the above function would look something like this:

    For Global Alignment

    For Local Alignment

    In addition to these two algorithms, there is an implementation of Guan–Uberbacher algorithm which performs global sequence alignment very efficiently since it only uses linear memory.

    For Multiple Sequence Alignment, any of the methods discussed above can be used to progressively perform a multiple sequence alignment.

    ModFinder module

    The ModFinder module provides new methods to identify and classify protein modifications in protein 3D structures. Over 400 different types of protein modifications such as phosphorylation, glycosylation, disulfide bonds metal chelation etc. were collected and curated based on annotations in PSI-MOD, RESID and RCSB PDB. The module also provides an API for detecting protein modifications within protein structures.

    Example: identify and print all preloaded modifications from a structure

    Example: identify phosphorylation sites in a structure

    Demo code to run the above methods

    There are plans to include further protein modifications by integrating other resources such as UniProt

    Amino acid properties module

    This module attempts to provide accurate physio-chemical properties of proteins. The properties that can calculated using this module are as follows:

  • Molecular mass
  • Extinction coefficient
  • Instability index
  • Aliphatic index
  • Grand average of hydropathy
  • Isoelectric point
  • Amino acid composition
  • The precise molecular weights for common isotopically labelled amino acids are included in this module. There also exists flexibility to define new amino acid molecules with their molecular weights using simple XML configuration files. This can be useful where the precise mass is of high importance such as mass spectrometry experiments.

    Protein disorder module

    The goal of this module is to provide users ways to find disorders in protein molecules. BioJava includes a Java implementation of the RONN predictor. The latest version of BioJava(3.0.5) makes use of Java's support for multithreading to improve performance by up to 3.2 times, on a modern quad-core machine, as compared to the legacy C implementation.

    There are two ways to use this module:

  • Using library function calls
  • Using command line
  • Making library function calls

    The following examples show how to use the module and make function calls to get information about protein disorders. The first two examples make library function calls to calculate the probability of disorder for every residue in the sequence provided.

    The third and fourth examples demonstrates how easily one can get the disordered regions of the protein.

    Example 1: Calculate the probability of disorder for every residue in the sequence

    Example 2: Calculate the probability of disorder for every residue in the sequence for all proteins from the FASTA input file

    Example 3: Get the disordered regions of the protein for a single protein sequence

    Example 4: Calculate the disordered regions for the proteins from FASTA file

    Using command line

    BioJava module biojava3-protein-disorder can be compiled into a single executable JAR file and run using the following command.

    java -jar <jar_file_name>

    Options supported by the command line executable

    JRONN version 3.1b usage 1 August 2011: java -jar JRONN_JAR_NAME -i=inputfile <OPTIONS> Where -i=input file Input file can contain one or more FASTA formatted sequences. All OPTIONS are optional OPTION DETAILED DESCRIPTION: -o full path to the output file, if not specified standard out is used -d the value of disorder, defaults to 0.5 -f output format, V for vertical, where the letters of the sequence and corresponding disorder values are output in two column layout. H for horizontal, where the disorder values are provided under the letters of the sequence. Letters and values separated by tabulation in this case. Defaults to V. -s the file name to write execution statistics to. -n the number of threads to use. Defaults to the number of cores available on the computer. n=1 mean sequential processing. Valid values are 1 < n < (2 x num_of_cores) Default value will give the best performance.

    Examples

    Predict disorder values for sequences from input file /home/input.fasta output the results to the standard out. Use default disorder value and utilise all CPUs available on the computer.

    java -jar JRONN.JAR -i=/home/input.fasta

    Predict disorder values for sequences from input file /home/input.fasta output the results in horizontal layout to the /home/jronn.out, collect execution statistics to /home/jronn.stat.txt file and limit the number of threads to two.

    java -jar JRONN.JAR -i=/home/input.fasta -o=/home/jronn.out -d=0.6 -n=2 -f=H

    The arguments can be provided in any order.

    Web service access module

    As per the current trends in bioinformatics, web based tools are gaining popularity. The web service module allows bioinformatics services to be accessed using REST protocols. Currently, two services are implemented: NCBI Blast through the Blast URLAPI (previously known as QBlast) and the HMMER web service.

    Comparisons with other alternatives

    The need for customized software in the field of bioinformatics has been addressed by several groups and individuals. Similar to BioJava, open-source software projects such as BioPerl, BioPython, and BioRuby all provide tool-kits with multiple functionality that make it easier to create customized pipelines or analysis.

    As the names suggest, the projects mentioned above use different programming languages. All of these APIs offer similar tools so on what criteria should one base their choice? For programmers who are experienced in only one of these languages, the choice is straightforward. However, for a well-rounded bioinformaticist who knows all of these languages and wants to choose the best language for a job, the choice can be made based on the following guidelines given by a software review done on the Bio* tool-kits.

    In general, for small programs (<500 lines) that will be used by only an individual or small group, it is hard to beat Perl and BioPerl. These constraints probably cover the needs of 90 per cent of personal bioinformatics programming.

    For beginners, and for writing larger programs in the Bio domain, especially those to be shared and supported by others, Python’s clarity and brevity make it very attractive.

    For those who might be leaning towards a career in bioinformatics and who want to learn only one language, Java has the widest general programming support, very good support in the Bio domain with BioJava, and is now the de facto language of business (the new COBOL, for better or worse).

    Apart from these Bio* projects there is another project called STRAP which uses Java and aims for similar goals. The STRAP-toolbox, similar to BioJava is also a Java-toolkit for the design of Bioinformatics programs and scripts. The similarities and differences between BioJava and STRAP are as follows:

    Similarities

  • Both provide comprehensive collections of methods for protein sequences.
  • Both are used by Java programmers to code bioinformatics algorithms.
  • Both separate implementations and definitions by using java interfaces.
  • Both are open source projects.
  • Both can read and write many sequence file formats.
  • Differences

  • BioJava is applicable to nucleotide and peptide sequences and can be applied for entire genomes. STRAP cannot cope with single sequences as long as an entire chromosome. Instead STRAP manipulates peptide sequences and 3D- structures of the size of single proteins. Nevertheless, it can hold a high number of sequences and structures in memory. STRAP is designed for protein sequences but can read coding nucleotide files, which are then translated to peptide sequences.
  • STRAP is very fast since the graphical user interface must be highly responsive. BioJava is used where speed is less critical.
  • BioJava is well designed in terms of type safety, ontology and object design. BioJava uses objects for sequences, annotations and sequence positions. Even single amino acids or nucleotides are object references. To enhance speed, STRAP avoids frequent object instantiations and invocation of non-final object-methods.
  • In BioJava peptide sequences and nucleotide sequences are lists of symbols. The symbols can be retrieved one after the other with an iterator or sub-sequences can be obtained. The advantages are that the entire sequence does not necessarily reside in memory and that programs are less susceptible to programming errors. Symbol objects are immutable elements of an alphabet. In STRAP however simple byte arrays are used for sequences and float arrays for coordinates. Besides speed the low memory consumption is an important advantage of basic data types. Classes in Strap expose internal data. Therefore, programmers might commit programming errors like manipulating byte arrays directly instead of using the setter methods. Another disadvantage is that no checks are performed in STRAP whether the characters in sequences are valid with respect to an underlying alphabet.
  • In BioJava sequence positions are realized by the class Location. Discontiguous Location objects are composed of several contiguous RangeLocation objects or PointLocation objects. For the class StrapProtein however, single residue positions are indicated by integer numbers between 0 and countResidues()-1. Multiple positions are given by boolean arrays. True at a given index means selected whereas false means not selected.
  • BioJava throws exceptions when methods are invoked with invalid parameters. STRAP avoids the time consuming creation of Throwable objects. Instead, errors in methods are indicated by the return values NaN, -1 or null. From the point of program design however Throwable objects are nicer.
  • In BioJava a Sequence object is either a peptide sequence or a nucleotide sequence. A StrapProtein can hold both at the same time if a coding nucleotide sequence was read and translated into protein. Both, the nucleotide sequence and the peptide sequence are contained in the same StrapProtein object. The coding or non-coding regions can be changed and the peptide sequence alters accordingly.
  • Projects using BioJava

    The following projects make use of BioJava.

  • Metabolic Pathway Builder: Software suite dedicated to the exploration of connections among genes, proteins, reactions and metabolic pathways
  • DengueInfo: a Dengue genome information portal that uses BioJava in the middleware and talks to a biosql database.
  • Dazzle: A BioJava based DAS server.
  • BioSense: A plug-in for the InforSense Suite, an analytics software platform by IDBS that unitizes BioJava.
  • Bioclipse: A free, open source, workbench for chemo- and bioinformatics with powerful editing and visualizing abilities for molecules, sequences, proteins, spectra, etc.
  • PROMPT: A free, open source framework and application for the comparison and mapping of protein sets. Uses BioJava for handling most input data formats.
  • Cytoscape: An open source bioinformatics software platform to visualize molecular interaction networks.
  • BioWeka: An open source biological data mining application.
  • Geneious: A molecular biology toolkit.
  • MassSieve: An open source application to analyze mass spec proteomics data.
  • Strap: A tool for multiple sequence alignment and sequence based structure alignment.
  • Jstacs: A Java framework for statistical analysis and classification of biological sequences
  • jLSTM "Long Short-Term Memory" for protein classification
  • LaJolla Structural alignment of RNA and proteins using an index structure for fast alignment of thousands of structures. Including an easy to use command line interface. Open source at Sourceforge.
  • GenBeans: A rich client platform for bioinformatics primarily focused on molecular biology and sequence analysis.
  • References

    BioJava Wikipedia