Skip to content

Commit

Permalink
add sanity checks, update version
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrKralCZ committed Nov 18, 2024
1 parent 1fbe073 commit 2161ea7
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
easyblock = 'PythonBundle'

name = 'bakta'
version = '1.10.0'
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
Expand Down Expand Up @@ -53,8 +53,17 @@ exts_list = [
}),
(name, version, {
'source_tmpl': SOURCE_PY3_WHL,
'checksums': ['48c24b23e1adad62ea22bee572341923cb84454bf76de0b03848b132363f1bed'],
'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'

0 comments on commit 2161ea7

Please sign in to comment.