Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions easybuild/easyconfigs/f/FAMSA/FAMSA-2.5.2-GCCcore-13.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
easyblock = 'MakeCp'

name = 'FAMSA'
version = '2.5.2'

homepage = 'https://github.com/refresh-bio/FAMSA'
description = """FAMSA2 is a progressive algorithm for large-scale multiple
sequence alignments"""

toolchain = {"name": "GCCcore", "version": "13.3.0"}

sources = [{
'filename': SOURCE_TAR_XZ,
'git_config': {
'url': 'https://github.com/refresh-bio',
'repo_name': 'FAMSA',
'commit': '2598410',
'clone_into': 'FAMSA-2.5.2',
},
}]
checksums = ['b00705aa660443b25421378a558defc05b2cf8a40657248348c372f469410335']

builddependencies = [
('binutils', '2.42'),
('CMake', '3.29.3'),
]

files_to_copy = [
(['bin/famsa'], 'bin'),
'LICENSE',
'README.md',
]

sanity_check_paths = {
'files': ['bin/famsa'],
'dirs': [],
}

sanity_check_commands = [
'famsa -h',
]

moduleclass = 'bio'
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dependencies = [
("BLAST+", "2.16.0"),
("DIAMOND", "2.1.11"),
("FastME", "2.1.6.3"),
("FAMSA", "2.5.2"),
("MCL", "22.282"),
("MMseqs2", "17-b804f"),
]
Expand Down Expand Up @@ -48,6 +49,10 @@ exts_list = [
),
]

postinstallcmds = [
'rm %(installdir)s/lib/python3.12/site-packages/orthofinder/bin/famsa',
]

sanity_check_paths = {
"files": [
"bin/orthofinder",
Expand Down
Loading