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 (Please follow this template replacing the text between parentheses with the requested information) ### Expected behavior and actual behavior When running a pipeline (in this instance nf-core/quantms)...

storage/gcp
executor/google-batch

It would be nice if we could change the file output name in the `output` directive, the same way you can do with `input`, like this; ```groovy process FOO {...

The `ScriptParser` class defines how a Nextflow script is executed. It essentially takes a Nextflow script and produces a Groovy class (i.e. `BaseScript`) which, when executed, builds the workflow DAG....

When using the -resume option, it would be helpful to see which processes are going to be run and which will be reused from the cache. Additionally it would be...

If a channel is created via `channel.value()` and passed directly to a process, nextflow hangs forever. ### Expected behavior and actual behavior I assumed that passing `channel.value()` would work for...

error-improvements

## New feature When using Azure Batch, Nextflow will reject a process if it has too many CPUs for the worker machine. ``` Caused by: Process requirement exceeds available CPUs...

executor/azure-batch

## Bug report when specigying a clusterOptions which includes a flag the Grid executor header is constructed wrongly by nextflow e.g profile.config : ``` clusterOptions = { "-g /${_queue_group} -app...

executor/lsf

## New feature Azure Batch [has a number of settings to apply to a pool](https://www.nextflow.io/docs/latest/azure.html#advanced-settings), such as autoscale, vmType, sku etc. But you must generate this configuration manually for all...

executor/azure-batch

## Bug report ### Expected behavior and actual behavior Inlatest version trying tower.yml as described here https://seqera.io/blog/best-practices-for-deploying-pipelines-with-nextflow-tower/ gave a java error ``` ERROR ~ 'com.fasterxml.jackson.core.io.ContentReference com.fasterxml.jackson.dataformat.yaml.YAMLFactory._createContentReference(java.lang.Object)' -- Check '.nextflow.log' file...

When importing an operator from a plugin, if you import anything from the same plugin in a different module, it fails with the following error: https://github.com/nextflow-io/nextflow/blob/f1cffd1b28b443aa3fbd9f99404fea84613d85df/modules/nextflow/src/main/groovy/nextflow/plugin/extension/PluginExtensionProvider.groovy#L137-L139 It seems to import...

plugins