You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`extern` - Git submodule for `tskit` and instructions on obtaining the latest version and copying the `tskit` C code into `tskitr` directory. `extern` is saved outside of the `tskitr` directory because `R CMD CHECK` complains otherwise.
37
+
*`extern` - Git submodule for `tskit` and instructions on obtaining the latest version and copying the `tskit` C code into `RcppTskit` directory. `extern` is saved outside of the `RcppTskit` directory because `R CMD CHECK` complains otherwise.
38
38
39
-
*`tskitr` - R package `tskitr`.
39
+
*`RcppTskit` - R package `RcppTskit`.
40
40
41
41
## License
42
42
43
43
* See `extern/LICENSE` for `tskit`.
44
44
45
-
* See `tskitr/DESCRIPTION` and `tskitr/LICENSE` for `tskitr`.
45
+
* See `RcppTskit/DESCRIPTION` and `RcppTskit/LICENSE` for `RcppTskit`.
If you plan to update `tskit`, follow instructions in `extern/README.md`.
90
90
91
-
Then open `tskitr` package directory in your favourite R IDE (Positron, RStudio, text-editor-of-your-choice, etc.), implement your changes and run (in R):
91
+
Then open `RcppTskit` package directory in your favourite R IDE (Positron, RStudio, text-editor-of-your-choice, etc.), implement your changes and run (in R):
92
92
93
93
```
94
-
# Note that the tskitr package is in the tskitr sub-directory
95
-
setwd("path/to/tskitr/tskitr")
94
+
# Note that the RcppTskit R package is in the RcppTskit sub-directory
95
+
setwd("path/to/RcppTskit/RcppTskit")
96
96
97
97
# Run checks of your changes, documentation, etc.
98
98
devtools::check()
@@ -104,15 +104,15 @@ devtools::install()
104
104
Alternatively you can check and install from command line:
105
105
106
106
```
107
-
# Note that the tskitr package is in the tskitr sub-directory
108
-
cd path/to/tskitr
107
+
# Note that the RcppTskit package is in the RcppTskit sub-directory
0 commit comments