Skip to content

Commit

Permalink
plain looks better on GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Jun 15, 2024
1 parent e0b60c7 commit 9bdd794
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ python -m pip install --upgrade 'recast-atlas[reana]' coolname

Authenticate to use the REANA cluster (remember to clean up later with `eval $(recast auth destroy)`)

```console
```
# Set these variables to your personal secret values
export RECAST_AUTH_USERNAME="<your RECAST auth username>"
export RECAST_AUTH_PASSWORD="<your RECAST auth password>"
Expand All @@ -84,7 +84,7 @@ export REANA_ACCESS_TOKEN="<your RECAST access token>"

Submit your RECAST workflow to the REANA cluster

```console
```
reana_tag="reana-$(coolname 2)"
recast submit examples/rome --backend reana --tag "${reana_tag}"
# REANA_WORKON sets the workflow automatically
Expand All @@ -93,23 +93,23 @@ export REANA_WORKON="recast-${reana_tag}"

Monitor the state of the workflow on REANA

```console
```
reana-client status
# or if REANA_WORKON not set
# reana-client status --workflow "<the created tag>"
```

The `examples/rome` example doesn't have any result files, but if it did you can download the results after the workflow succeeds

```console
```
reana-client download --output-directory output
# or if REANA_WORKON not set
# reana-client download --workflow "<the created tag>" --output-directory output
```

Clean up the environment of personal information in environmental variables

```console
```
eval $(recast auth destroy)
```

Expand Down

0 comments on commit 9bdd794

Please sign in to comment.