Skip to content

Commit

Permalink
fixes for readme: remove diy-cromwell reference, gizmo->localhost, pa…
Browse files Browse the repository at this point in the history
…k for pkg install
  • Loading branch information
sckott committed Jan 8, 2024
1 parent c989a5b commit 52fe5ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
13 changes: 4 additions & 9 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,24 @@ Convenience Tools for Managing WDL Workflows via Cromwell
You can install the development version of `rcromwell` from [GitHub](https://github.com/) with:

```r
# install.packages("remotes")
remotes::install_github("getwilds/rcromwell")
# install.packages("pak")
pak::pak("getwilds/rcromwell")
```

Install a specific release version (in this case v1.0) by:

```r
remotes::install_github('getwilds/[email protected]')
pak::pak('getwilds/[email protected]')
```

## Set up your Cromwell Server

Use instructions over in the [diy-cromwell-server repo](https://github.com/FredHutch/diy-cromwell-server) to get the configuration files needed and some testing workflows.


## Example workflow process

Set your Cromwell URL

```r
library(rcromwell)
library(dplyr)
cromwell_config("http://gizmoXXX:20202")
cromwell_config("http://localhost:20202")
```

### Validate your workflow formatting
Expand Down
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,24 @@ Convenience Tools for Managing WDL Workflows via Cromwell
You can install the development version of `rcromwell` from [GitHub](https://github.com/) with:

```r
# install.packages("remotes")
remotes::install_github("getwilds/rcromwell")
# install.packages("pak")
pak::pak("getwilds/rcromwell")
```

Install a specific release version (in this case v1.0) by:

```r
remotes::install_github('getwilds/[email protected]')
pak::pak('getwilds/[email protected]')
```

## Set up your Cromwell Server

Use instructions over in the [diy-cromwell-server repo](https://github.com/FredHutch/diy-cromwell-server) to get the configuration files needed and some testing workflows.


## Example workflow process

Set your Cromwell URL

```r
library(rcromwell)
library(dplyr)
cromwell_config("http://gizmoXXX:20202")
cromwell_config("http://localhost:20202")
```

### Validate your workflow formatting
Expand Down

0 comments on commit 52fe5ac

Please sign in to comment.