diff --git a/easybuild/easyconfigs/c/CLEAR/CLEAR-20210117-foss-2021b-Python-2.7.18.eb b/easybuild/easyconfigs/c/CLEAR/CLEAR-20210117-foss-2021b-Python-2.7.18.eb index d6dc0ae6888..46ab6c20df7 100644 --- a/easybuild/easyconfigs/c/CLEAR/CLEAR-20210117-foss-2021b-Python-2.7.18.eb +++ b/easybuild/easyconfigs/c/CLEAR/CLEAR-20210117-foss-2021b-Python-2.7.18.eb @@ -1,19 +1,19 @@ -easyblock = "PythonPackage" +easyblock = 'PythonPackage' -name = "CLEAR" -version = "20210117" -versionsuffix = "-Python-%(pyver)s" -local_commit = "64bc22d52d99466a044848992fd0d775a983d60c" +name = 'CLEAR' +local_commit = '64bc22d52d99466a044848992fd0d775a983d60c' +version = '20210117' +versionsuffix = '-Python-%(pyver)s' -homepage = "https://github.com/YangLab/CLEAR" -description = "Direct comparison of circular and linear RNA expression" - -source_urls = ["https://github.com/YangLab/CLEAR/archive"] -sources = ["%s.tar.gz" % local_commit] -checksums = ['a0824bcbaf6db52dcbb24467277045d341bbd266e582d9a89fd1656c89ba64ea'] +homepage = 'https://github.com/YangLab/CLEAR' +description = 'Direct comparison of circular and linear RNA expression' toolchain = {'name': 'foss', 'version': '2021b'} +source_urls = ['https://github.com/YangLab/CLEAR/archive'] +sources = [{'download_filename': '%s.tar.gz' % local_commit, 'filename': SOURCE_TAR_GZ}] +checksums = ['a0824bcbaf6db52dcbb24467277045d341bbd266e582d9a89fd1656c89ba64ea'] + dependencies = [ ('Python', '2.7.18'), ('CIRCexplorer2', '2.3.8', versionsuffix), @@ -26,13 +26,16 @@ download_dep_fail = True use_pip = True sanity_pip_check = True +options = {'modulename': 'src.circ_quant'} + sanity_check_paths = { - 'files': ['bin/clear_quant'], - 'dirs': [] + 'files': ['bin/circ_quant', 'bin/clear_quant'], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], } -sanity_check_commands = ["clear_quant -h"] - -options = {'modulename': False} +sanity_check_commands = [ + "circ_quant --help", + "clear_quant --help", +] moduleclass = 'bio'