Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{bio}[gompi/2023a] ABRicate v1.0.0, any2fasta v0.4.2 #21554

Merged
Merged
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
41 changes: 41 additions & 0 deletions easybuild/easyconfigs/a/ABRicate/ABRicate-1.0.0-gompi-2023a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Author: Pavel Grochal (INUITS)
# License: GPLv2

easyblock = 'Tarball'

name = 'ABRicate'
version = '1.0.0'

homepage = 'https://github.com/tseemann/abricate'
description = "Mass screening of contigs for antimicrobial and virulence genes"

toolchain = {'name': 'gompi', 'version': '2023a'}

# https://github.com/tseemann/abricate
github_account = 'tseemann'
source_urls = [GITHUB_LOWER_SOURCE]
sources = ['v%(version)s.zip']
checksums = ['e7e2af45e47b887c4dba754af87a24014dcb5552eb3fe2a3fd66bb5359a0daf9']

dependencies = [
('Perl', '5.36.1'),
('any2fasta', '0.4.2'),
('BioPerl', '1.7.8'),
('BLAST+', '2.14.1'),
]

postinstallcmds = ['%(installdir)s/bin/abricate --setupdb']

sanity_check_paths = {
'files': ['bin/abricate', 'bin/abricate-get_db'],
'dirs': ['db'],
}

sanity_check_commands = [
"abricate --help",
"abricate --list",
]

modloadmsg = "abricate databases are located in $EBROOTABRICATE/db\n"

moduleclass = 'bio'
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Author: Pavel Grochal (INUITS)
# Updated by: Denis Kristak (INUITS)
# License: GPLv2

easyblock = 'Tarball'

name = 'any2fasta'
version = '0.4.2'

homepage = 'https://github.com/tseemann/any2fasta'
description = "Convert various sequence formats to FASTA"

toolchain = {'name': 'GCCcore', 'version': '12.3.0'}

# https://github.com/tseemann/any2fasta
github_account = 'tseemann'
source_urls = [GITHUB_SOURCE]
sources = ['v%(version)s.zip']
checksums = ['3faa738ab409c7073afe3769e9d32dd5b28a2c12e72c2e4ac6f4e9946ee9a22f']

dependencies = [('Perl', '5.36.1')]

modextrapaths = {'PATH': ''}

sanity_check_paths = {
'files': ['any2fasta'],
'dirs': [],
}

sanity_check_commands = [
'any2fasta -h',
'any2fasta -q %(builddir)s/%(name)s-%(version)s/test.fq',
]

moduleclass = 'tools'
Loading