-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
45 lines (36 loc) · 1.97 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# natmanager
<!-- badges: start -->
[](https://natverse.org/)
[](https://cran.r-project.org/package=natmanager)

[](https://github.com/natverse/natmanager/releases/)
[](https://natverse.org//natmanager/reference/)
[](https://github.com/natverse/natmanager/actions)
[](https://app.codecov.io/gh/natverse/natmanager)
<!-- badges: end -->
The goal of natmanager is to streamline installation of packages from the
natverse (NeuroAnatomy Toolbox) suite of R packages for computational neuroanatomy. See https://natverse.org/install/ for the full details.
```{r eval=FALSE, include=TRUE}
install.packages('natmanager')
# install core packages to try out the core natverse
natmanager::install('core')
# Full "batteries included" installation with all packages
# It is recommended to have a GitHub account and personal access token (PAT) for this full
# batteries installation. However if you don't have one, then natmanager's default PAT will be used.
natmanager::install('natverse')
#you can also install non-natverse packages like below, this feature is useful if you want to avoid
#rate limiting issues from github and errors from warnings while installing packages:
natmanager::install(pkgs = 'flyconnectome/hemibrainr')
```