prep_edgeR | R Documentation |
This function reads an edgeR DEG data frame from an RDS file, filters it using
deg_filter
function, adjusts the logFC to absolute values, adds a pseudo-count to PValue,
and transforms PValue for plotting. The final data frame is returned and
optionally saved to a new RDS file.
prep_edgeR(input_path, output_name = NULL)
input_path |
Path to the RDS file containing the edgeR DEG data frame. |
output_name |
Name for the processed data frame, also used as the RDS file name. |
A data frame with processed edgeR DEG data.
edgeR_file <- system.file("extdata",
"DEG_edgeR_test.rds",
package = "TransProR")
edgeR <- prep_edgeR(edgeR_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.