-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
64 lines (51 loc) · 2.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!-- README.md is generated from README.Rmd. Please edit that file -->
<!-- use knitr::knit(input="README.Rmd", output = "README.md") to generate README.md -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/"
)
```
[![Build Status](https://travis-ci.org/cells2numbers/migrationminer.svg?branch=master)](https://travis-ci.org/cells2numbers/migrationminer)
[![codecov](https://codecov.io/gh/cells2numbers/migrationminer/branch/master/graph/badge.svg)](https://codecov.io/gh/cells2numbers/migrationminer)
# migrationminer
migrationminer is a R package to analyse and profile in vitro cell tracking and migration data. It is belongs to the [cytominer-verse](https://github.com/cytomining/) used for morphological profiling and allows to create temporal or dynamic profiles.
It works well together with CellProiler and the CellProfiler tracking module. Beside that it is quite easy to parse other formats as long as the tracking data is available in tidy format. That means, that the data is available as csv where each row represents a cell with at least four columns
* x coordinate
* y coordinate
* time point
* track label
## Installation
migrationminer is not yet available from CRAN but you can install directly from github. First, you need to install the devtools package. You can do this from CRAN. Invoke R and then type
```{}
install.packages("devtools")
```
Load the package using
```{}
library(devtools)
```
Now install migrationminer from github using
```{}
install_github("cells2numbers/migrationminer")
```
You should see something like
```
Downloading GitHub repo cells2numbers/migrationminer@master
from URL https://api.github.com/repos/cells2numbers/migrationminer/zipball/master
Installing migrationminer
'/usr/local/Cellar/r/3.4.1_2/lib/R/bin/R' --no-site-file --no-environ --no-save --no-restore --quiet CMD INSTALL \
'/private/var/folders/qq/v5mwx8g15655gt708s86vys8yzcpll/T/RtmpUyrzzK/devtoolse7f945c7b360/cells2numbers-migrationminer-8a95c5d' \
--library='/usr/local/lib/R/3.4/site-library' --install-tests
* installing *source* package ‘migrationminer’ ...
** R
** tests
** preparing package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
* DONE (migrationminer)
Reloading installed migrationminer
```
If this does not work for you or you find any bugs, please file an issue!