nextflow icon indicating copy to clipboard operation
nextflow copied to clipboard

A DSL for data-driven computational pipelines

Results 407 nextflow issues
Sort by recently updated
recently updated
newest added

## Summary Nextflow application is a packaged as a set of JAR files (Java archives) that are uploaded to [Maven central repository](https://search.maven.org/) with the exception of the launcher app that's...

software/java

## Bug report When using Nextflow with the `cleanup = true` option, input files staged from S3 are left in the work dir. ### Expected behavior and actual behavior In...

storage/aws

## Bug report Nextflow file main.nf ``` #!/usr/bin/env nextflow params.values = Channel.from(1) process echoValue { publishDir "${params.outdir}/echoValue/", mode: 'copy' input: val value output: path "*_echoValue.txt" script: """ echo "Value: $value"...

storage/aws

This PR is spawned out of #4659, of which it represents its evolution and finalisation. Some highlights: * handles multiple revisions by storing them in `localPath` defined via the `commitId`,...

## Bug report On google-batch, when using a different service account than the default one, it seems both the default service account (scheduling the jobs) and the runner service account...

storage/gcp
executor/google-batch

It'd be nice to have a new workflow introspection scope called `workflow.seqeraPlatform` to access metadata from Seqera Platform, when available. For example: ```nextflow workflow.seqeraPlatform.user.username workflow.seqeraPlatform.user.name workflow.seqeraPlatform.user.email workflow.seqeraPlatform.user.roles workflow.seqeraPlatform.workspace.id workflow.seqeraPlatform.workspace.name workflow.seqeraPlatform.computeEnvironment.id...

Hello, I'm trying out the new publish feature introduced in version 24.04.0, but wasn't able to figure out the right implementation in my case. In my current pipeline, a single...

## Bug report This is a very peculiar bug involving an apparent breakdown of scope when the same Groovy method is called by two subworkflows in parallel. The smallest example...

This is spawned out of #4659 . Original attempt, using revisions not commit IDs, in localPath (as per original thread). This PR is for the record and for reference, unlikely...

## Bug report ### Expected behavior and actual behavior **Expected behaviour** Pipelines runs successfully **Actual behaviour** **Nextflow** exist with a `Missing project main script` error when run in a specific...

good first issue