|
...
|
...
|
@@ -256,8 +256,7 @@ x2 <- CellTracker(
|
|
256
|
256
|
# Track cell movements using CUSTOM params, show plots
|
|
257
|
257
|
x3 <- CellTracker(
|
|
258
|
258
|
tc_obj = ThreeConditions$drug01,
|
|
259
|
|
- import_optiParam_from = x1,
|
|
260
|
|
- lnoise = 6, diameter = 18,
|
|
|
259
|
+ lnoise = 5, diameter = 22, threshold = 6,
|
|
261
|
260
|
threads = 2, maxDisp = 10,
|
|
262
|
261
|
show_plots = TRUE)
|
|
263
|
262
|
```
|
|
...
|
...
|
@@ -483,13 +482,25 @@ an *MSD* analysis and *Velocity autocorrelation*.
|
|
483
|
482
|
|
|
484
|
483
|
|
|
485
|
484
|
**Directionality Analysis**. This analysis is performed via the `DiRatio()`
|
|
486
|
|
-function. Results are saved in a *CSV* file.
|
|
|
485
|
+function. Results are saved in a *CSV* file. Plots can be generated using the
|
|
|
486
|
+`DiRatioPlot()` function. Plots are saved in a newly created folder with the
|
|
|
487
|
+following extension: `-DR_Results`.
|
|
|
488
|
+
|
|
487
|
489
|
|
|
488
|
490
|
```{r echo=TRUE, include=TRUE, eval=TRUE}
|
|
489
|
491
|
## Directionality
|
|
490
|
492
|
srmTD <- DiRatio(rmTD, export=TRUE)
|
|
|
493
|
+DiRatioPlot(srmTD, export=TRUE)
|
|
|
494
|
+```
|
|
|
495
|
+
|
|
|
496
|
+
|
|
|
497
|
+```{r, echo=FALSE, out.width="50%", fig.cap="Controldirectionality"}
|
|
|
498
|
+knitr::include_graphics(
|
|
|
499
|
+ "Control-DR_Results/Controldirectionality ratio for all cells.jpg")
|
|
491
|
500
|
```
|
|
492
|
501
|
|
|
|
502
|
+
|
|
|
503
|
+
|
|
493
|
504
|
**Mean Square Displacement**. The MSD function automatically computes the mean
|
|
494
|
505
|
square displacements across several sequential time intervals. MSD parameters
|
|
495
|
506
|
are used to assess the area explored by cells over time. Usually, both the
|