-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes for readme: remove diy-cromwell reference, gizmo->localhost, pa…
…k for pkg install
- Loading branch information
Showing
2 changed files
with
8 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|