Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 04-processes-part1.md #168

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion episodes/04-processes-part1.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
## Implicit variables

We use the Nextflow implicit variable `${projectDir}` to specify the directory where the main script is located. This is important as Nextflow scripts are executed in a separate working directory.
A full list of implicit variables can be found [here](https://www.nextflow.io/docs/latest/script.html?highlight=implicit%20variables#implicit-variables)

Check warning on line 81 in episodes/04-processes-part1.md

View workflow job for this annotation

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [here](https://www.nextflow.io/docs/latest/script.html?highlight=implicit%20variables#implicit-variables)


::::::::::::::::::::::::::::::::::::::::::::::::::
Expand Down Expand Up @@ -665,7 +665,7 @@
The `input` block defines which channels the process is expecting to receive input from.
The number of elements in input channels determines the process dependencies and the number of times a process executes.

![Process Flow](../fig/channel-process.png)
![Diagram showing a Nextflow channel with three value feeding into a Nextflow process which then runs 3 tasks producing 3 outputs](../fig/channel-process.png)

Check warning on line 668 in episodes/04-processes-part1.md

View workflow job for this annotation

GitHub Actions / Build markdown source files if valid

[missing file]: [Diagram showing a Nextflow channel with three value feeding into a Nextflow process which then runs 3 tasks producing 3 outputs](../fig/channel-process.png) [image missing alt-text]: ../fig/channel-process.png


You can only define one input block at a time and it must contain one or more input declarations.
Expand All @@ -687,7 +687,7 @@
* `stdin`: Lets you forward the received value to the process stdin special file.
* `tuple`: Lets you handle a group of input values having one of the above qualifiers.
* `each`: Lets you execute the process for each entry in the input collection.
A complete list of inputs can be found [here](https://www.nextflow.io/docs/latest/process.html#inputs).

Check warning on line 690 in episodes/04-processes-part1.md

View workflow job for this annotation

GitHub Actions / Build markdown source files if valid

[uninformative link text]: [here](https://www.nextflow.io/docs/latest/process.html#inputs)
::::::::::::::::::::::::::::::::::::::::::::::::::

### Input values
Expand Down
Loading