nocite: @steipe-rptPlus

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
# knitr knits in a new session with an empty global workspace after setting its
# working directory to ./vignettes. To make your package functions available in
# the vignette, you have to load the library. The following two lines should
# accomplish this without manual intervention:
pkgName <- trimws(gsub("^Package:", "", readLines("../DESCRIPTION")[1]))
library(pkgName, character.only = TRUE)

 

There are many links and references in this document. If you find anything here ambiguous, inaccurate, outdated, incomplete, or broken, please [file an issue](https://github.com/hyginn/BCB420.2019.ESA/issues)!

 

About this Vignette

This tool takes as input at least one curated human system name and integrates both of its components' PPI and GGI data to predict regulatory relationships among them. External system\'s PPI data may also be used to predict regulatory relationships. Currently, it only supports human genes and proteins.

Example and usage

For a single curated system, for example,

Note: this vignette fails with an error:

Error: processing vignette 'BCB420.2019.ESA-Vignette_PredictRegulatoryNetworks.Rmd' failed with diagnostics:
   Functions that produce HTML output found in document targeting latex output.

However, we can't produce html output, because the ./doc folder is too large and the installed package size exceeds the allowable limit. I am commenting out the function blocks. Note that the output is technically correct, it is just too large in the context of the package. (bs. 2019-04-06)

# get curated system "SLIGR"
# mySys <- getSysInteractions(sysName = "SLIGR", criterion = "stringent")
# mySys2 <- getSysInteractions(sysName = "SLIGR", criterion = "relaxed")

# hypothesize(mySys2, mySys)

The red nodes are components of SLIGR with both PPI and GGI information. The blue nodes are SLIGR components that with only genetic interaction data.

For multiple curated systems,

# specify the systems
systems <- c("PHALY", "SLIGR", "NLRIN", "HVGCR")
# mySys <- getSysInteractions(systems)
# mySys2 <- getSysInteractions(systems, criterion = "relaxed")

# hypothesize(mySys2, mySys)

Red nodes denote components in all of the systems for which both PPI and GGI data are available. The blue nodes denote the nodes in all of the systems for which only GGI data are available.

Session Info

This release of the BCB420.2019.ESA package was produced in the following context of supporting packages:

sessionInfo()

References



hyginn/BCB420.2019.ESA documentation built on May 29, 2019, 1:23 p.m.