`r logo_path <- system.file("extdata", "logo.png", package = "pathfindR"); knitr::opts_chunk$set(out.width="15%"); knitr::include_graphics(logo_path)` pathfindR - Converted Genes and Genes without Interactions

knitr::opts_chunk$set(echo = FALSE)

Table of Converted Gene Symbols

genes_df <- params$df
colnames(genes_df) <- c("Old Symbol", "Converted Symbol", "Change", "p-value")
genes_df <- genes_df[genes_df[, 1] != genes_df[, 2], ]
knitr::kable(genes_df, align = "c", table.caption.prefix ="")

Table of Genes without Interactions (not found in the PIN)

org_df <- params$original_df
missing_df <- org_df[!org_df[, 1] %in% params$df[, 1], ]
knitr::kable(missing_df, align = "c", table.caption.prefix ="")


Try the pathfindR package in your browser

Any scripts or data that you put into this service are public.

pathfindR documentation built on April 3, 2025, 9:25 p.m.