Skip to content

Commit cb20e54

Browse files
committed
Change default parameters for simulate-batch.R
1 parent dc96459 commit cb20e54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Run the script `simulate-batch.R` with desired arguments. For example, below we
5252
run simulations as a whole.
5353
5454
```
55-
Rscript simulate-batch.R --simulate TRUE --summarise TRUE --clover TRUE
55+
Rscript simulate-batch.R
5656
```
5757
5858
For example, if you want to exclude clover example, just run the following.

simulate-batch.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
library(optparse)
33

44
option_list <- list(
5-
make_option("--simulate", type = "logical", default = FALSE,
5+
make_option("--simulate", type = "logical", default = TRUE,
66
help = "Simulate or not"),
7-
make_option("--summarise", type = "logical", default = FALSE,
7+
make_option("--summarise", type = "logical", default = TRUE,
88
help = "Summarise or not"),
99
make_option("--clover", type = "logical", default = TRUE,
1010
help = "Generate clover example or not")

0 commit comments

Comments
 (0)