Filter genes based on expression variance to select the most dynamically expressed genes.
genes_filter_dynamic(e, thr = 0.9)Matrix containing only genes above the variance threshold
Matrix of expression values with genes as rows and samples as columns
Threshold quantile for variance filtering (default: 0.9)
This function calculates the variance for each gene across samples and retains only genes with variance above the specified quantile threshold. This helps focus analysis on genes that show significant expression changes. # Filter top 10 # filtered_expr <- genes_filter_dynamic(expression_matrix, thr = 0.9)