Update renv.snakefile
parent
32d6549793
commit
c30bf4d24f
|
@ -6,7 +6,7 @@ rule renv_install:
|
|||
## renv_install: initialize a renv environment for this project
|
||||
rule renv_init:
|
||||
shell:
|
||||
"R -e 'renv::init()'"
|
||||
"R -e 'options(renv.consent = TRUE)' && R -e 'renv::init()'"
|
||||
|
||||
## renv_snap : Look for new R packages in files & archives them
|
||||
rule renv_snap:
|
||||
|
@ -16,4 +16,4 @@ rule renv_snap:
|
|||
## renv_restore: Installs archived packages onto a new machine
|
||||
rule renv_restore:
|
||||
shell:
|
||||
"R -e 'renv::restore()'"
|
||||
"R -e 'renv::restore()'"
|
||||
|
|
Loading…
Reference in New Issue