Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{bio}[system/system] cromwell v56 #12125

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions easybuild/easyconfigs/c/cromwell/cromwell-56-Java-11.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
easyblock = 'JAR'

name = 'cromwell'
version = '56'
versionsuffix = '-Java-%(javaver)s'

homepage = 'http://cromwell.readthedocs.io/'
description = """Cromwell is a Workflow Management System geared towards scientific workflows."""

toolchain = SYSTEM

source_urls = ['https://github.com/broadinstitute/%(name)s/releases/download/%(version)s/']
sources = [
{
'download_filename': '%(name)s-%(version)s.jar',
'filename': '%(name)s.jar',
},
{
'download_filename': 'womtool-%(version)s.jar',
'filename': 'womtool.jar',
},
]
checksums = [
'955502419cfec2a687ea56f7f4a433b395af09c9a078e60a5676c7ad56c3965d', # cromwell.jar
'0f561c0d387412715f1f688ad5ae7cd4d8af3dc8d68c69ae9fc35ecae4f481c6', # womtool.jar
]

dependencies = [('Java', '11')]

sanity_check_paths = {
'files': ['%(name)s.jar', 'womtool.jar'],
'dirs': [],
}

modloadmsg = "To execute %(name)s, run: java -jar $EBROOTCROMWELL/%(name)s.jar"
modloadmsg += "\nTo execute womtool, run: java -jar $EBROOTCROMWELL/womtool.jar"

moduleclass = 'bio'