mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 03:38:05 +01:00
43 lines
1.6 KiB
Plaintext
43 lines
1.6 KiB
Plaintext
##
|
|
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
|
|
#
|
|
# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
|
|
# Authors:: Fotis Georgatos <fotis@cern.ch>
|
|
# License:: MIT/GPL
|
|
# $Id$
|
|
#
|
|
# This work implements a part of the HPCBIOS project and is a component of the policy:
|
|
# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
|
|
##
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'HMMER'
|
|
version = '3.0'
|
|
|
|
homepage = 'http://hmmer.janelia.org/'
|
|
description = """HMMER is used for searching sequence databases for homologs of protein sequences,
|
|
and for making protein sequence alignments. It implements methods using probabilistic models
|
|
called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other
|
|
sequence alignment and database search tools based on older scoring methodology,
|
|
HMMER aims to be significantly more accurate and more able to detect remote homologs
|
|
because of the strength of its underlying mathematical models. In the past, this strength
|
|
came at significant computational expense, but in the new HMMER3 project, HMMER is now
|
|
essentially as fast as BLAST."""
|
|
toolchain = {'name': 'goolf', 'version': '1.4.10'}
|
|
|
|
# eg.
|
|
# http://selab.janelia.org/software/hmmer3/3.0/hmmer-3.0-linux-intel-x86_64.tar.gz
|
|
versiondir = "hmmer%s" % ".".join(version.split('.')[:-1])
|
|
sources = ['hmmer-%s-linux-intel-x86_64.tar.gz' % version]
|
|
source_urls = [
|
|
'http://selab.janelia.org/software/%s/%s/' %
|
|
(versiondir, version)]
|
|
|
|
sanity_check_paths = {
|
|
'files': ["bin/hmmemit", "bin/hmmsearch", "bin/hmmscan"],
|
|
'dirs': []
|
|
}
|
|
|
|
moduleclass = 'bio'
|