Skip to content

Commit 33895b0

Browse files
committed
Updated readme examples
1 parent 398f766 commit 33895b0

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ You can to execute the command `nextflow -h` to show the program help.
3636
Create a file named `hello.nf` with the following content and copy it
3737
to the path where you downloaded the Nextflow package.
3838

39-
echo true
40-
4139
task {
4240
"""
4341
printf 'Hello world! \n'
@@ -48,7 +46,7 @@ to the path where you downloaded the Nextflow package.
4846

4947
Launch the above example by typing the following command on your terminal console:
5048

51-
./nextflow -q hello.nf
49+
./nextflow -echo hello.nf
5250

5351

5452
Congratulations! You have just run your first task with Nextflow.
@@ -106,8 +104,6 @@ Tasks in your pipeline can be written in any scripting language supported by the
106104
other than Linux BASH (e.g. Perl, Python, Ruby, R, etc), simply start your task script with the corresponding
107105
<a href='http://en.wikipedia.org/wiki/Shebang_(Unix)' target='_bank'>shebang</a> declaration. For example:
108106

109-
echo true
110-
111107
task {
112108

113109
"""

examples/hello.nf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env nextflow
22

3-
echo true
4-
53
task {
64

75
"""

0 commit comments

Comments
 (0)