diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | doc/hello-world-inputs.json | 3 | ||||
| -rw-r--r-- | doc/hello-world-inputs.yaml | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md index a5de032..47ad83b 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ ravanan requires a running Guix daemon. ravanan maintains its own *store* (this You can run a workflow `hello-world.cwl` with inputs in `hello-world-inputs.json` using ``` -ravanan hello-world.cwl hello-world-inputs.json --store=store --guix-manifest=manifest.scm +ravanan hello-world.cwl hello-world-inputs.yaml --store=store --guix-manifest=manifest.scm ``` `--store` specifies a directory to use as ravanan's store. `--guix-manifest` specifies a Guix manifest file that lists the dependencies required for the workflow. An example `hello-world.cwl` and `hello-world-inputs.json` are provided in the `doc` directory of this repository. diff --git a/doc/hello-world-inputs.json b/doc/hello-world-inputs.json deleted file mode 100644 index eb32ec3..0000000 --- a/doc/hello-world-inputs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "name": "Foo" -} diff --git a/doc/hello-world-inputs.yaml b/doc/hello-world-inputs.yaml new file mode 100644 index 0000000..a604a97 --- /dev/null +++ b/doc/hello-world-inputs.yaml @@ -0,0 +1 @@ +name: Foo |
