Applications/Maker

From HPC
Revision as of 11:00, 19 April 2017 by Pysdlb (talk | contribs) (Pysdlb moved page Maker to Applications/Maker without leaving a redirect)

Jump to: navigation , search

Application Details

  • Description: MAKER is a portable and easily configurable genome annotation pipeline. Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases.
  • Version: 2.31.8
  • Modules: maker/2.31.8
  • Licence: GNU General Public License developed by the Free Software Foundation.

Usage

MAKER is a portable and easily configurable genome annotation pipeline. Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. MAKER identifies repeats, aligns ESTs and proteins to a genome, produces ab-initio gene predictions and automatically synthesizes these data into gene annotations having evidence-based quality values. MAKER is also easily trainable: outputs of preliminary runs can be used to automatically retrain its gene prediction algorithm, producing higher quality gene-models on seusequent runs. MAKER's inputs are minimal and its ouputs can be directly loaded into a GMOD database. They can also be viewed in the Apollo genome browser; this feature of MAKER provides an easy means to annotate, view and edit individual contigs and BACs without the overhead of a database. MAKER should prove especially useful for emerging model organism projects with minimal bioinformatics expertise and computer resources.

Maker depends on the following modules on Viper

  • module load ncbi-blast/2.4.0
  • module load perl/5.24.0

These are loaded automatically with

  • module load maker/2.31.8


Non Interactive

Note: this example is done on a high memory node, usually access would be achieved with the scheduler


[username@c230 ~]$ module add maker/2.31.8
[username@c230 ~]$ maker --ignore_nfs_tmp

Interactive

Through SLURM this would become the script:

A typical script would be:


#!/bin/bash
#SBATCH -J maker
#SBATCH -N 1
#SBATCH --ntasks-per-node 1
#SBATCH -o out
#SBATCH -e err
#SBATCH -p highmem
#SBATCH --exclusive

module purge
module add gcc/4.9.3
module add maker/2.31.8

maker --ignore_nfs_tmp

This is then submitted as follows:

[username@login01 ~]$ sbatch makerDEMO.job
Submitted batch job 289522



Further Information

Icon home.png