EMBOSS

From Bioinformatist.com

Jump to: navigation, search

Contents

Introduction

EMBOSS stands for European Molecular Biology Open Software Suite. It is a collection of high quality, Open Source software for molecular biology research. It can be used to read and convert data in various formats and can be used for sequence alignment, database searching, motif detection, primer design etc.,

Package details

* Format: Gzipped Tar Archive
* Source Code: ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-5.0.0.tar.gz
* Version: 5.0.0
* License: GPL and LGPL
* Author: see http://emboss.sourceforge.net/credits/
* Website: http://emboss.sourceforge.net
* Download: http://emboss.sourceforge.net/download/
* Requirements: http://emboss.sourceforge.net/download/#Requirements
* FAQ: http://emboss.sourceforge.net/docs/faq.html

Installation

Linux

  1. Uncompress the file EMBOSS-5.0.0.tar.gz into a temporary directory (ex: temp)
    mkdir temp
    cd temp
    Assuming EMBOSS-5.0.0.tar.gz is downloaded to the /data directory,
    tar zxvf /data/EMBOSS-5.0.0.tar.gz 
  2. Configure
    By default, EMBOSS is installed in /usr/local. If it has to be installed at some other location(ex: /opt), then the ./configure in the following step has to be replaced with ./configure --prefix=/opt
    cd EMBOSS-5.0.0
    ./configure

  3. Compile and Install
    make
    make install
  4. Logout and Re-login or  issue the command ldconfig as root to make the libraries available.

Running

All the programs can be run from a terminal. A number of graphical interfaces also exist. 

Troubleshooting