-
Notifications
You must be signed in to change notification settings - Fork 705
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21829 from verdurin/20241111170916_new_pr_HOMER51
{bio}[foss/2023a] HOMER v5.1 w/ R 4.3.2
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
easybuild/easyconfigs/h/HOMER/HOMER-5.1-foss-2023a-R-4.3.2.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
easyblock = 'Binary' | ||
|
||
name = 'HOMER' | ||
version = '5.1' | ||
versionsuffix = '-R-%(rver)s' | ||
|
||
homepage = "http://homer.ucsd.edu/homer/" | ||
description = """HOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and | ||
next-gen sequencing analysis. It is a collection of command line programs for unix-style operating systems written | ||
in Perl and C++. HOMER was primarily written as a de novo motif discovery algorithm and is well suited for finding | ||
8-20 bp motifs in large scale genomics data. HOMER contains many useful tools for analyzing ChIP-Seq, GRO-Seq, | ||
RNA-Seq, DNase-Seq, Hi-C and numerous other types of functional genomics sequencing data sets.""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2023a'} | ||
|
||
source_urls = ['http://homer.ucsd.edu/homer'] | ||
sources = ['configureHomer.pl'] | ||
checksums = ['ccdaa3004a0e0df0882634671d4a1acc88364761e0e6c7ea329ebbf1eb729537'] | ||
|
||
builddependencies = [ | ||
('wget', '1.24.5'), | ||
('Zip', '3.0'), | ||
('UnZip', '6.0'), | ||
] | ||
|
||
dependencies = [ | ||
('Perl', '5.36.1'), | ||
('R', '4.3.2'), | ||
('SAMtools', '1.18'), | ||
('R-bundle-Bioconductor', '3.18', versionsuffix) | ||
] | ||
|
||
postinstallcmds = ["cd %(installdir)s && perl ./configureHomer.pl -install homer -version v%(version)s"] | ||
|
||
sanity_check_paths = { | ||
'files': [ | ||
'bin/homer', | ||
'bin/getGenomeTilingPeaks', | ||
'config.txt', | ||
'DoughnutDocumentation.pdf', | ||
'data/accession/homologene.data', | ||
'motifs/hnf1b.motif', | ||
], | ||
'dirs': ['bin', 'data', 'motifs', 'update'], | ||
} | ||
|
||
sanity_check_commands = ["%(namelower)s --help"] | ||
|
||
moduleclass = 'bio' |