Skip to content

Commit

Permalink
adding easyconfigs: Nextflow-24.04.2.eb
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Jun 8, 2024
1 parent df3fdc5 commit 940616f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions easybuild/easyconfigs/n/Nextflow/Nextflow-24.04.2.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
easyblock = 'Binary'

name = 'Nextflow'
version = '24.04.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-all']
checksums = ['1491a4efc06f0df9eed1fa6aa5a8c657435397fa99c34bf954281460e9b1c5ee']

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 940616f

Please sign in to comment.