Skip to content

{tools}[foss/2023a] bakta v1.10.1 #22820

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

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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
67 changes: 67 additions & 0 deletions easybuild/easyconfigs/b/bakta/bakta-1.10.1-foss-2023a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
easyblock = 'PythonBundle'

name = 'bakta'
version = '1.10.1'

homepage = "https://github.com/oschwengers/bakta"
description = """Bakta is a tool for the rapid & standardized annotation of bacterial genomes and plasmids
from both isolates and MAGs. It provides dbxref-rich, sORF-including and taxon-independent annotations
in machine-readable JSON & bioinformatics standard file formats for automated downstream analysis."""

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

builddependencies = [
('scikit-build-core', '0.9.3'),
]

dependencies = [
('Python', '3.11.3'),
('Biopython', '1.83'),
('PyYAML', '6.0'),
('PyHMMER', '0.10.15'),
('matplotlib', '3.7.2'),
('python-isal', '1.6.1'),
('zlib-ng', '2.1.6'),
('archspec', '0.2.1'),
]

exts_list = [
('about_time', '4.2.1', {
'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
'checksums': ['8bbf4c75fe13cbd3d72f49a03b02c5c7dca32169b6d49117c257e7eb3eaee341'],
}),
('grapheme', '0.6.0', {
'checksums': ['44c2b9f21bbe77cfb05835fec230bd435954275267fea1858013b102f8603cca'],
}),
('alive_progress', '3.2.0', {
'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
'checksums': ['0677929f8d3202572e9d142f08170b34dbbe256cc6d2afbf75ef187c7da964a8'],
}),
('pyCirclize', '1.7.1', {
'source_tmpl': '%(namelower)s-%(version)s-py3-none-any.whl',
'checksums': ['e0c049877b1ee47245866cc9968f2aded5fe3ead8a3333841536dc29fd14bc90'],
}),
('pyrodigal', '3.6.3', {
'source_tmpl': '%(name)s-%(version)s-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl',
'checksums': ['e9f2f2aa99299971d52e8e097d2fe3059a6bfc1d42674cfcba2b7ec18e8df8ea'],
}),
('xopen', '2.0.2', {
'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
'checksums': ['74e7f7fb7e7f42bd843c798595fa5a52086d7d1bf3de0e8513c6615516431313'],
}),
(name, version, {
'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
'checksums': ['82967b4eefd2a1084743211fe955fa394972c2d2c878c6682e00b13dabc5a445'],
}),
]

local_bins = ['bakta', 'bakta_db', 'bakta_io', 'bakta_plot', 'bakta_proteins']

sanity_check_paths = {
'files': ['bin/%s' % bin for bin in local_bins],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}

sanity_check_commands = ['%s --help' % bin for bin in local_bins]

moduleclass = 'tools'
Loading