FASTcalculateRC.Rd
This function calculates Random Control (RC)
FASTcalculateRC(
df,
DEGs,
catalog,
TFs,
all.targets,
TF.col = "TF..OFFICIAL_TF_CODING_GENE_NAME.",
lambda = 0.05,
nRep = 100
)
a data frame containng p-values
a character vector of DEGs (differentially expressed genes)
a data frame of TFactS catalog (ver. 2)
a character vector of transcription factor
a character vector of all target genes
the name of the column that contains the TF names
a user-specified threshold of E-value (default: 0.05)
number of random selections (default: 100)
data.frame
Essaghir A et al. Nucleic Acids Res. 2010 Jun;38(11):e120.
data(example.df)
data(catalog)
data(DEGs)
tftg <- extractTFTG(DEGs, catalog)
TFs <- tftg$TFs
all.targets <- tftg$all.targets
res <- FASTcalculateRC(example.df, DEGs, catalog, TFs, all.targets)