deg_filter: Function to Filter Differentially Expressed Genes (DEGs)

View source: R/FourDegsVenn.R

deg_filterR Documentation

Function to Filter Differentially Expressed Genes (DEGs)

Description

This function filters out genes based on their expression change status. It returns the names of genes which are not "stable".

Usage

deg_filter(df)

Arguments

df

A data frame containing gene expression data.

Value

A vector of gene names that are differentially expressed.

Examples

DEG_deseq2_file <- system.file("extdata", "DEG_deseq2.rds", package = "TransProR")
DEG_deseq2 <- readRDS(DEG_deseq2_file)
DEG_deseq2_test <- deg_filter(DEG_deseq2)

TransProR documentation built on April 4, 2025, 3:16 a.m.