-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC-overview.Rmd
54 lines (49 loc) · 2.05 KB
/
C-overview.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
<!-- ---------------------------------- -->
# Overview
<!-- ---------------------------------- -->
The following illustrates the typical sequence of steps performed during a *CellTrails* analysis and lists the available functions, respectively.
* Selection of trajectory features
+ ``filterTrajFeaturesByDL``
+ ``filterTrajFeaturesByCOV``
+ ``filterTrajFeaturesByFF``
* Lower-dimensional manifold learning
+ ``embedSamples``
+ ``findSpectrum``
+ ``latentSpace``
+ ``plotManifold``
* Clustering
+ ``findStates``
+ ``states``
+ ``plotStateSize``
+ ``plotStateExpression``
* Determination of the trajectory topology
+ ``connectStates``
+ ``showTrajInfo``
+ ``trajComponents``
+ ``selectTrajectory``
+ ``plotStateTrajectory``
* Chronologically ordering of samples
+ ``fitTrajectory``
+ ``plotTrajectoryFit``
* Trajectory visualization
+ ``write.ygraphml``
+ ``read.ygraphml``
+ ``trajLayout``
+ ``plotMap``
* Identification of paths (trails) on the trajectory
+ ``landmarks``
+ ``userLandmarks``
+ ``addTrail``, ``removeTrail``
+ ``trailNames``
+ ``trails``
+ ``plotTrail``
* Inference of expression dynamics of trails
+ ``fitDynamic``
+ ``plotDynamic``
* Intra- and inter-trail expression dynamic comparison
+ ``contrastTrailExpr``
By calling the function `showTrajInfo`, an informative overview of the data relevant for, or stored by _CellTrails_ is printed. We suggest to use this function multiple times during a _CellTrails_ analysis, as it provides useful insights into the analysis' progress.
```{r, eval=TRUE}
showTrajInfo(exBundle)
```
The entries _logcounts_ and _Feature data_ correspond to the expression matrix and feature information provided and annotated by the user, respectively. _Pheno data_ contains metainformation for each sample stored by the user and by *CellTrails*. The entries _Trajectory data_, _Trajectories_ and _Trail data_ denote *CellTrails* specific information and will be described in detail in the respective section of this handbook.