View source: R/wrap_add_tde_overall.R
add_tde_overall | R Documentation |
To calculate differential expression within trajectories, check out the dynfeature package.
add_tde_overall(trajectory, tde_overall)
trajectory |
The trajectory as created by |
tde_overall |
A dataframe containing the feature_id, and some other columns including whether it is differentially expressed (differentially_expressed), the rank of differential expression among all other features (rank), the p-value (pval) or corrected value (qval), and the log-fold change (lfc). |
A trajectory containing tde_overall, a dataframe containing the feature_id, and some other columns including whether it is differentially expressed (differentially_expressed), the rank of differential expression among all other features (rank), the p-value (pval) or corrected value (qval), and the log-fold change (lfc).
trajectory <- example_trajectory
tde_overall <- tibble::tibble(
feature_id = trajectory$feature_info$feature_id,
differentially_expressed = sample(c(TRUE, FALSE), length(feature_id), replace = TRUE)
)
trajectory <- add_tde_overall(trajectory, tde_overall)
trajectory$tde_overall
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.