Skip to content

Commit

Permalink
fix value for $BIG_SCAPE_HTML_PATH for BiG-SCAPE v1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Sep 17, 2024
1 parent 7821c59 commit 6f238ee
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,19 @@ sanity_pip_check = True

options = {'modulename': 'bigscape'}

local_lib_py_bigscape_path = 'lib/python%(pyshortver)s/site-packages/bigscape'

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

sanity_check_commands = [
'bigscape --help',
]

modextravars = {
'BIG_SCAPE_HTML_PATH': '%(installdir)s/lib/python%(pyshortver)s/site-packages/BiG-SCAPE',
'BIG_SCAPE_HTML_PATH': '%(installdir)s/' + local_lib_py_bigscape_path,
}

modloadmsg = "%(name)s needs processed Pfam database to work properly.\n"
Expand Down

0 comments on commit 6f238ee

Please sign in to comment.