Skip to content

Commit 7137cdd

Browse files
fix summary formatting, add output titles to console
1 parent 25c32aa commit 7137cdd

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

docs/side_quests/nf-core.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -876,16 +876,16 @@ skip_trim = false
876876
Let's add an `if` statement that is depended on the `skip_trim` parameter to control the execution of the `SEQTK_TRIM` process:
877877

878878
```groovy title="workflows/myfirstpipeline.nf" linenums="29"
879-
//
880-
// MODULE: Run SEQTK_TRIM
881-
//
882-
if (!params.skip_trim) {
883-
SEQTK_TRIM (
884-
ch_samplesheet
885-
)
886-
ch_trimmed = SEQTK_TRIM.out.reads
887-
ch_versions = ch_versions.mix(SEQTK_TRIM.out.versions.first())
888-
}
879+
//
880+
// MODULE: Run SEQTK_TRIM
881+
//
882+
if (!params.skip_trim) {
883+
SEQTK_TRIM (
884+
ch_samplesheet
885+
)
886+
ch_trimmed = SEQTK_TRIM.out.reads
887+
ch_versions = ch_versions.mix(SEQTK_TRIM.out.versions.first())
888+
}
889889
```
890890

891891
Here, an `if` statement that is depended on the `skip_trim` parameter is used to control the execution of the `SEQTK_TRIM` process. An `!` can be used to imply the logical "not".
@@ -1392,8 +1392,10 @@ You added a new local module to the pipeline. We touched on how the module templ
13921392
In this side-quest you got an introduction to nf-core. You've learned:
13931393

13941394
- Section 1: How to run nf-core pipelines
1395+
13951396
1. Where to find information about nf-core pipelines
13961397
2. How to run a nf-core pipelines
1398+
13971399
- Section 2: How to create an nf-core pipelines:
13981400

13991401
1. About nf-core tooling

0 commit comments

Comments
 (0)