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

## Bug report ### Expected behavior and actual behavior The [documentation](https://www.nextflow.io/docs/latest/process.html#native-execution) says that I can just replace a script command with Groovy language code to do some processing. However, when...

lang/processes

### Rationale The configuration file is a key component of the Nextflow framework since it allows workflow developers to decouple the pipeline logic from the execution parameters and infrastructure deployment...

pinned
lang/config

## Bug report ### Expected behavior and actual behavior When I use `${baseDir}` in my config file, it is properly recognized when I run my pipeline using `nextflow run`: ```...

known issue
platform/k8s
lang/config

## Bug report ### Expected behavior and actual behavior **TLDR: `process.executor = 'google-lifesciences'` is not recognized for certain nextflow versions if its written before another process {} statment**. We have...

known issue
lang/config

## Bug report ### Expected behavior and actual behavior * Expected: Options set with `withName` only affect the corresponding process(es) * Actual: If process.ext gets initalized for all processes, updating...

known issue
lang/config

Add new executor to nextflow: Bridge (see issue #3094).

## New feature Hello there :wave:, I'm facing some problems when using nextflow on a PBS/torque node with hybrid architecture (2 nodes on ppc7 + 1 x86 node), and this...

platform/pbs

This PR builds upon the available settings with the core `azcopy` tool which is used for uploads and downloads in the context of Azure Blob storage service.

storage/azure
platform/azure-batch

I am using nextflow with a SGE task scheduler. I've noticed that the pipeline submits many very similar jobs that are batched across a number of samples (e.g., FastQC on...

platform/sge
platform/slurm
pinned

Try ``` process foo { input: path x from '/some/data/foo.txt' output: path '*', includeInputs:true into foo_ch """ touch file.txt """ } foo_ch.view { "foo: $it.name" } ````

pinned
lang/processes