Skip to content

Commit

Permalink
Merge pull request #16107 from boegel/20220823192759_new_pr_medaka143
Browse files Browse the repository at this point in the history
add missing BCFtools dependency for recent medaka versions
  • Loading branch information
verdurin authored Aug 24, 2022
2 parents 83eac69 + 9661163 commit fd4b64d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
8 changes: 6 additions & 2 deletions easybuild/easyconfigs/m/medaka/medaka-1.4.3-foss-2020b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies = [
('pyspoa', '0.0.8'),
('pyfaidx', '0.5.9.5'),
('python-isal', '0.11.1'),
('BCFtools', '1.11'),
]

use_pip = True
Expand Down Expand Up @@ -83,10 +84,13 @@ exts_list = [
sanity_pip_check = True

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

sanity_check_commands = ["medaka --help"]
sanity_check_commands = [
"medaka --help",
"medaka_version_report",
]

moduleclass = 'bio'
8 changes: 6 additions & 2 deletions easybuild/easyconfigs/m/medaka/medaka-1.5.0-foss-2021a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ dependencies = [
('ont-fast5-api', '4.0.0'),
('WhatsHap', '1.1'),
('intervaltree-python', '3.1.0'),
('BCFtools', '1.12'),
]

use_pip = True
Expand All @@ -51,10 +52,13 @@ exts_list = [
sanity_pip_check = True

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

sanity_check_commands = ["medaka --help"]
sanity_check_commands = [
"medaka --help",
"medaka_version_report",
]

moduleclass = 'bio'
8 changes: 6 additions & 2 deletions easybuild/easyconfigs/m/medaka/medaka-1.6.0-foss-2021b.eb
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies = [
('ont-fast5-api', '4.0.2'),
('WhatsHap', '1.4'),
('intervaltree-python', '3.1.0'),
('BCFtools', '1.14'),
]

use_pip = True
Expand All @@ -52,10 +53,13 @@ exts_list = [
sanity_pip_check = True

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

sanity_check_commands = ["medaka --help"]
sanity_check_commands = [
"medaka --help",
"medaka_version_report",
]

moduleclass = 'bio'

0 comments on commit fd4b64d

Please sign in to comment.