forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: VSEARCH-2.25.0-GCC-12.3.0.eb
- Loading branch information
rocky_build
committed
Nov 20, 2023
1 parent
68f6d93
commit 5f43f49
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
easybuild/easyconfigs/v/VSEARCH/VSEARCH-2.25.0-GCC-12.3.0.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,40 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'VSEARCH' | ||
version = '2.25.0' | ||
|
||
homepage = 'https://github.com/torognes/vsearch' | ||
description = """VSEARCH supports de novo and reference based chimera detection, | ||
clustering, full-length and prefix dereplication, rereplication, | ||
reverse complementation, masking, all-vs-all pairwise global alignment, | ||
exact and global alignment searching, shuffling, subsampling and sorting. | ||
It also supports FASTQ file analysis, filtering, | ||
conversion and merging of paired-end reads.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '12.3.0'} | ||
|
||
source_urls = ['https://github.com/torognes/vsearch/archive'] | ||
sources = ['v%(version)s.tar.gz'] | ||
checksums = ['b7e25638924e56591d7c6ac3a959795000439937f5b566be7f06457bb31f91a9'] | ||
|
||
builddependencies = [ | ||
('Autotools', '20220317'), | ||
] | ||
|
||
dependencies = [ | ||
('zlib', '1.2.13'), | ||
('bzip2', '1.0.8'), | ||
] | ||
|
||
preconfigopts = './autogen.sh &&' | ||
|
||
configopts = '--disable-pdfman ' | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/vsearch'], | ||
'dirs': [], | ||
} | ||
|
||
sanity_check_commands = ['vsearch --help'] | ||
|
||
moduleclass = 'bio' |