diff --git a/docs/advanced/configuration.md b/docs/advanced/configuration.md index 47306e75..dd1b30c7 100644 --- a/docs/advanced/configuration.md +++ b/docs/advanced/configuration.md @@ -4,8 +4,8 @@ This is an aspect of Nextflow that can be confusing. There are multiple ways of This gives us two complications: -- At which location should I be loading a configuration value? -- Given a particular parameter, how do I know where it was set? +- At which location should I be loading a configuration value? +- Given a particular parameter, how do I know where it was set? ## Precedence @@ -152,15 +152,15 @@ The most common use for dynamic process directives is to enable tasks that fail To enable this, two directives are needed: -- `maxRetries` -- `errorStrategy` +- `maxRetries` +- `errorStrategy` The `errorStrategy` directive determines what action Nextflow should take in the event of a task failure (a non-zero exit code). The available options are: -- `terminate`: Nextflow terminates the execution as soon as an error condition is reported. Pending jobs are killed (default) -- `finish`: Initiates an orderly pipeline shutdown when an error condition is raised, waiting the completion of any submitted job. -- `ignore`: Ignores processes execution errors. -- `retry`: Re-submit for execution a process returning an error condition. +- `terminate`: Nextflow terminates the execution as soon as an error condition is reported. Pending jobs are killed (default) +- `finish`: Initiates an orderly pipeline shutdown when an error condition is raised, waiting the completion of any submitted job. +- `ignore`: Ignores processes execution errors. +- `retry`: Re-submit for execution a process returning an error condition. If the `errorStrategy` is "retry", then it will retry up to the value of `maxRetries` times. diff --git a/docs/advanced/index.md b/docs/advanced/index.md index 1de33996..89e363df 100644 --- a/docs/advanced/index.md +++ b/docs/advanced/index.md @@ -16,12 +16,12 @@ Let's get started! By the end of this course you should: -- Describe commonly used and well understood operators -- Apply good practices for the propagation of metadata -- Group and split channels -- Apply Groovy helper classes to Nextflow scripts -- Sensibly structure workflows -- Apply layers of configuration to a workflow +- Describe commonly used and well understood operators +- Apply good practices for the propagation of metadata +- Group and split channels +- Apply Groovy helper classes to Nextflow scripts +- Sensibly structure workflows +- Apply layers of configuration to a workflow ## Audience & prerequisites @@ -29,10 +29,10 @@ Please note that this is **not** a beginner's workshop and familiarity with Next **Prerequisites** -- A GitHub account -- Experience with command line -- Familiarity with Nextflow and Groovy -- An understanding of common file formats +- A GitHub account +- Experience with command line +- Familiarity with Nextflow and Groovy +- An understanding of common file formats ## Follow the training video diff --git a/docs/advanced/introduction.md b/docs/advanced/introduction.md index f523e312..a5967227 100644 --- a/docs/advanced/introduction.md +++ b/docs/advanced/introduction.md @@ -14,12 +14,12 @@ Let's get started! By the end of this course you should: -- Describe commonly used and well understood operators -- Apply good practices for the propagation of metadata -- Group and split channels -- Apply Groovy helper classes to Nextflow scripts -- Sensibly structure workflows -- Apply layers of configuration to a workflow +- Describe commonly used and well understood operators +- Apply good practices for the propagation of metadata +- Group and split channels +- Apply Groovy helper classes to Nextflow scripts +- Sensibly structure workflows +- Apply layers of configuration to a workflow ## Audience & prerequisites @@ -27,10 +27,10 @@ Please note that this is **not** a beginner's workshop and familiarity with Next **Prerequisites** -- A GitHub account -- Experience with command line -- Familiarity with Nextflow and Groovy -- An understanding of common file formats +- A GitHub account +- Experience with command line +- Familiarity with Nextflow and Groovy +- An understanding of common file formats ## Follow the training video diff --git a/docs/advanced/metadata.md b/docs/advanced/metadata.md index b0f02767..294ac86c 100644 --- a/docs/advanced/metadata.md +++ b/docs/advanced/metadata.md @@ -2,8 +2,8 @@ A central challenge in a lot of batch-style computation is how to ensure the metadata describing a file remains with the file. Two good rules for handling metadata in Nextflow are: -- Metadata should be explicit - be extremely wary of metadata encoded in filenames -- Metadata should travel through channels with the data in a tuple element. +- Metadata should be explicit - be extremely wary of metadata encoded in filenames +- Metadata should travel through channels with the data in a tuple element. ## Metadata Import diff --git a/docs/advanced/support.md b/docs/advanced/support.md index c4353e34..6cf585fd 100644 --- a/docs/advanced/support.md +++ b/docs/advanced/support.md @@ -3,6 +3,6 @@ title: Support description: Advanced Nextflow Training Workshop --- -- Nextflow official documentation is available at [www.nextflow.io/docs/latest](https://www.nextflow.io/docs/latest/) -- If you have questions, ask on the Seqera Community Forum at [http://community.seqera.io/](http://community.seqera.io/) -- If you want to chat about Nextflow or plugin development, check the Nextflow Slack at [https://www.nextflow.io/slack-invite.html](https://www.nextflow.io/slack-invite.html) +- Nextflow official documentation is available at [www.nextflow.io/docs/latest](https://www.nextflow.io/docs/latest/) +- If you have questions, ask on the Seqera Community Forum at [http://community.seqera.io/](http://community.seqera.io/) +- If you want to chat about Nextflow or plugin development, check the Nextflow Slack at [https://www.nextflow.io/slack-invite.html](https://www.nextflow.io/slack-invite.html) diff --git a/docs/basic_training/cache_and_resume.fr.md b/docs/basic_training/cache_and_resume.fr.md index 424c9e9d..ea993951 100644 --- a/docs/basic_training/cache_and_resume.fr.md +++ b/docs/basic_training/cache_and_resume.fr.md @@ -90,9 +90,9 @@ nextflow run