Skip to content

Commit

Permalink
Prettify
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io>
  • Loading branch information
mribeirodantas committed Jun 25, 2024
1 parent 936bcdf commit c8a540c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion docs/hello_nextflow/02_hello_world.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ Let's open the script and look at how it's structured.

The file is in the current directory. Optionally, you can type `ls` in the terminal and Ctrl+Click on the file to open it. If you're on macOS, you can use Cmd+Click.


The first block of code describes a **process** called `sayHello` that writes its output to `stdout`:

```groovy title="hello-world.nf"
Expand Down
1 change: 1 addition & 0 deletions docs/hello_nextflow/03_hello_gatk.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ reads_ch = Channel.of(params.reads_bam)
```

_After:_

```groovy title="hello-gatk.nf"
// Create input channel (multiple files via CLI parameter)
reads_ch = Channel.fromList(params.reads_bam)
Expand Down

0 comments on commit c8a540c

Please sign in to comment.