Skip to content

Commit

Permalink
Merge pull request easybuilders#21696 from CLIP-HPC/20241018105429_ne…
Browse files Browse the repository at this point in the history
…w_pr_Nextflow24044

{tools}[system/system] Nextflow v24.04.4
  • Loading branch information
smoors authored Oct 18, 2024
2 parents 3db7895 + 0d3fc4d commit 677cf0f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions easybuild/easyconfigs/n/Nextflow/Nextflow-24.04.4.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
easyblock = 'Binary'

name = 'Nextflow'
version = '24.04.4'

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-all']
checksums = ['9077cfb151d4bc8682f09a65a77f45346bf34dac5931e371dba0d51bf13a5076']

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

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

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

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

moduleclass = 'tools'

0 comments on commit 677cf0f

Please sign in to comment.