Skip to content

Commit 14f282f

Browse files
committed
Fixed typo in readme
1 parent 8ac2e0f commit 14f282f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ always install using
3535
``` r
3636
install.packages("devtools")
3737
library(devtools)
38-
install("semgsim2")
38+
install("semgsim")
3939
```
4040

4141
A very simple integration test can then be performed like this:
4242

4343
``` r
4444
library(semgsim)
45-
results <- simulate_muscle("semgsim2/config/integration.r", deterministic=TRUE, num_cores=3)
45+
results <- simulate_muscle("semgsim/config/integration.r", deterministic=TRUE, num_cores=3)
4646
```
4747

4848
That runs a simple demo simulation of a muscle with just three motor

Readme.rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ To run, first install the package and all required dependencies. I always instal
2323
```{r eval=FALSE}
2424
install.packages("devtools")
2525
library(devtools)
26-
install("semgsim2")
26+
install("semgsim")
2727
```
2828

2929

3030
A very simple integration test can then be performed like this:
3131
```{r eval=FALSE}
3232
library(semgsim)
33-
results <- simulate_muscle("semgsim2/config/integration.r", deterministic=TRUE, num_cores=3)
33+
results <- simulate_muscle("semgsim/config/integration.r", deterministic=TRUE, num_cores=3)
3434
```
3535
That runs a simple demo simulation of a muscle with just three motor units. The call to simulate_muscle should take several minutes up to an hour to complete, but should fail early if something does not work.
3636

0 commit comments

Comments
 (0)