Skip to content
Merged
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
46 changes: 46 additions & 0 deletions easybuild/easyconfigs/f/FastANI/FastANI-1.34-GCC-14.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# easybuild easyconfig
#
# John Dey jfdey@fredhutch.org
#
# Updated: Pavel Grochal (INUITS)

easyblock = 'ConfigureMake'

name = 'FastANI'
version = '1.34'

homepage = "https://github.com/ParBLiSS/FastANI"
description = """FastANI is developed for fast alignment-free computation of
whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean
nucleotide identity of orthologous gene pairs shared between two microbial
genomes. FastANI supports pairwise comparison of both complete and draft
genome assemblies."""

toolchain = {'name': 'GCC', 'version': '14.3.0'}

github_account = 'ParBLiSS'
source_urls = [GITHUB_SOURCE]
sources = ['v%(version)s.zip']
patches = ['FastANI-1.2-memcpy.patch']
checksums = [
{'v1.34.zip': 'cb15540634c725cb46dded7becaff38b27a7f709c0a8589db986674effcc6180'},
{'FastANI-1.2-memcpy.patch': 'eebcf0b64c31ee360ca79136f644157064ac69747ed13cff70f5c9932c6bb0d5'},
]

builddependencies = [('Autotools', '20250527')]

dependencies = [
('GSL', '2.8'),
('zlib', '1.3.1'),
]

preconfigopts = 'autoconf && '

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

sanity_check_commands = ["fastANI --help"]

moduleclass = 'bio'