From 33895b091f42911d3e69b17201d2f87949e79c40 Mon Sep 17 00:00:00 2001 From: Paolo Di Tommaso Date: Thu, 18 Jul 2013 19:10:41 +0200 Subject: [PATCH] Updated readme examples --- README.md | 6 +----- examples/hello.nf | 2 -- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index dcea67f41d..5fc5129f2e 100644 --- a/README.md +++ b/README.md @@ -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' @@ -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. @@ -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 shebang declaration. For example: - echo true - task { """ diff --git a/examples/hello.nf b/examples/hello.nf index 85b8d731b0..6b973d8136 100755 --- a/examples/hello.nf +++ b/examples/hello.nf @@ -1,7 +1,5 @@ #!/usr/bin/env nextflow -echo true - task { """