Skip to content

Commit

Permalink
Updated readme examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Jul 18, 2013
1 parent 398f766 commit 33895b0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ You can to execute the command `nextflow -h` to show the program help.
Create a file named `hello.nf` with the following content and copy it
to the path where you downloaded the Nextflow package.

echo true

task {
"""
printf 'Hello world! \n'
Expand All @@ -48,7 +46,7 @@ to the path where you downloaded the Nextflow package.

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

./nextflow -q hello.nf
./nextflow -echo hello.nf


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

echo true

task {

"""
Expand Down
2 changes: 0 additions & 2 deletions examples/hello.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/env nextflow

echo true

task {

"""
Expand Down

0 comments on commit 33895b0

Please sign in to comment.