Description Usage Arguments Examples
Provides mean score expression changees along the cell cycle time-series with classification of different cell clusters.
1 | mean_score_plot(mean_scores, kmean_result, ordIndex)
|
mean_scores |
The mean score results returned from the reCAT software, "get_score" |
kmean_result |
The classification of kmeans clustering result. |
ordIndex |
The order obtained from reCAT, "get_ordIndex" which returns the cell cycle time-series of the data. |
1 2 3 4 5 | cycle_mean_scores <- get_score(t(test_exp))$mean_score
kmean_classification <- kmeans_clustering(cycle_mean_scores)
reCAT_ordIndex <- get_ordIndex(test_exp, threadnum = 2)
require(scater)
mean_score_plot(cycle_mean_scores, kmean_classification, reCAT_ordIndex)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.