Filter genes based on expression variance to select the most dynamically expressed genes.
Details
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)
