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

{tools}[system/system] Nextflow v24.10.2 #21939

Merged
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
36 changes: 36 additions & 0 deletions easybuild/easyconfigs/n/Nextflow/Nextflow-24.10.2.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
easyblock = 'Binary'

name = 'Nextflow'
version = '24.10.2'

homepage = 'https://www.nextflow.io/'
description = """Nextflow is a reactive workflow framework and a programming DSL
that eases writing computational pipelines with complex data"""

toolchain = SYSTEM

source_urls = ['https://github.com/nextflow-io/nextflow/releases/download/v%(version)s/']
sources = ['nextflow-%(version)s-dist']
checksums = ['972bb4f4bcd30bb474c29c247ccf79289bbcd444f799f0307f61123e6b0f7475']

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

install_cmds = [
"mkdir -p %(installdir)s/bin",
"cp %(builddir)s/nextflow-%(version)s-dist %(installdir)s/bin",
"cd %(installdir)s/bin && ln -s nextflow-%(version)s-dist nextflow",
"cd %(installdir)s/bin && chmod +x %(installdir)s/bin/nextflow-%(version)s-dist",
]

sanity_check_paths = {
'files': ['bin/nextflow-%(version)s-dist', 'bin/nextflow'],
'dirs': []
}

sanity_check_commands = [
"nextflow -v",
"nextflow help",
"nextflow info",
]

moduleclass = 'tools'
Loading