From: Peter Amstutz Date: Wed, 3 Feb 2021 20:14:29 +0000 (-0500) Subject: Fix register defaults lesson X-Git-Url: https://git.arvados.org/arvados-vscode-cwl-training.git/commitdiff_plain/40fe594b56efdecdbc6ad830e3515fee4fadf378 Fix register defaults lesson Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- diff --git a/README.md b/README.md index 89581a1..fe1897c 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Code (abbreviated "vscode") to develop CWL workflows on Arvados. 1. Select `Register or update CWL workflow on Arvados Workbench` 1. Go to your desktop 1. Right click on the desktop, select `New > Text Document` - 1. Name the file `message.txt` + 1. Name the file `message` 1. Enter a message like "Hello earth" and save 1. Workbench: Go to `+NEW` and select `New project` 1. Enter a name for the project like "Lesson 2" @@ -129,13 +129,17 @@ Code (abbreviated "vscode") to develop CWL workflows on Arvados. 1. Click on the dot menu 1. Choose `Outputs` 1. Right click on `reverse.txt` - 1. Click on `Download` - 1. Open the downloaded file. It should have your results. + 1. Click on `Open in new tab` + 1. The results should be visible in a new browser tab. ## 5. Register a workflow with default inputs The default value for the `message` parameter will taken from the `lesson3/defaults.yaml` file +1. Vscode: Click on the `lesson3/main.cwl` file + 1. Click on the `Terminal` menu + 1. Click `Run Task…` + 1. Select `Register or update CWL workflow on Arvados Workbench` 1. Workbench: Go to `+NEW` and select `New project` 1. Enter a name for the project like "Lesson 3" 1. You should arrive at the panel for the new project diff --git a/lesson3/defaults.yaml b/lesson3/defaults.yaml new file mode 100644 index 0000000..cc5b1e4 --- /dev/null +++ b/lesson3/defaults.yaml @@ -0,0 +1 @@ +message: "Default lesson 3 greeting" diff --git a/lesson3/input.yaml b/lesson3/input.yaml deleted file mode 100644 index b15ff6f..0000000 --- a/lesson3/input.yaml +++ /dev/null @@ -1 +0,0 @@ -message: "Hello from lesson 3"