Skip to content

Commit

Permalink
fix GUIDANCE installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Moors committed Mar 7, 2024
1 parent 86b07cc commit 036a400
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion easybuild/easyconfigs/g/GUIDANCE/GUIDANCE-2.02-GCC-12.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,14 @@ dependencies = [
('PAGAN2', '1.53_20230824', '-linux64', SYSTEM),
]

files_to_copy = ['programs', 'www']

_bins = ['isEqualTree', 'msa_set_score', 'removeTaxa', 'semphy']

files_to_copy = [(['programs/%s/%s' % (x, x) for x in _bins], 'bin'), 'www']
postinstallcmds = [
'cd %(installdir)s && mkdir bin && cd bin'
' && ' + ' && '.join(['ln -s ../programs/%s/%s' % (x, x) for x in _bins])
]

sanity_check_paths = {
'files': ['bin/%s' % x for x in _bins],
Expand Down

0 comments on commit 036a400

Please sign in to comment.