mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
43 lines
1.3 KiB
Plaintext
43 lines
1.3 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 = 'MEME'
|
|
version = '4.8.0'
|
|
|
|
homepage = 'http://meme.nbcr.net/'
|
|
description = """The MEME Suite allows you to: * discover motifs using MEME, DREME (DNA only) or
|
|
GLAM2 on groups of related DNA or protein sequences, * search sequence databases with motifs using
|
|
MAST, FIMO, MCAST or GLAM2SCAN, * compare a motif to all motifs in a database of motifs, * associate
|
|
motifs with Gene Ontology terms via their putative target genes, and * analyse motif enrichment
|
|
using SpaMo or CentriMo."""
|
|
|
|
toolchain = {'name': 'goolf', 'version': '1.4.10'}
|
|
|
|
# Download from eg. http://ebi.edu.au/ftp/software/MEME/4.8.0/meme_4.8.0.tar.gz
|
|
sources = ['meme_%(version)s.tar.gz']
|
|
source_urls = ['http://ebi.edu.au/ftp/software/MEME/%(version)s']
|
|
|
|
dependencies = [
|
|
('libxml2', '2.9.1'),
|
|
('libxslt', '1.1.28'),
|
|
('zlib', '1.2.7'),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ["bin/meme"],
|
|
'dirs': ["doc", "lib"],
|
|
}
|
|
|
|
moduleclass = 'bio'
|