Skip to content
Snippets Groups Projects
Verified Commit 3907181b authored by Laurent Modolo's avatar Laurent Modolo
Browse files

CONTRIBUTING.md: fix typo

parent b927e7f7
No related branches found
No related tags found
No related merge requests found
......@@ -205,10 +205,10 @@ You can the use tests on `read.size()` to define conditional `script` block:
### Complex processes
Sometime you want to do write complexe processes, for example for `fastp` we want to have predefine `fastp` process for different protocols, order of adapter trimming and reads clipping.
Sometime you want to do write complex processes, for example for `fastp` we want to have predefine `fastp` process for different protocols, order of adapter trimming and reads clipping.
We can then use the fact that `process` or named `workflow` can be interchangeably imported with th [DSL2](https://www.nextflow.io/docs/latest/dsl2.html#workflow-composition).
With the following example, the user can simply include the `fastp` step without knowing that it's a named `workflow`instead of a `process`.
With the following example, the user can simply include the `fastp` step without knowing that it's a named `workflow` instead of a `process`.
By specifying the `params.fastp_protocol`, the `fastp` step will transparently switch betwen the different `fastp` `process`es.
Here `fastp_default` or `fastp_accel_1splus`, and other protocols can be added later, pipeline will be able to handle these new protocols by simply updating from the `upstream` repository without changing their codes.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment