getGRN: Returns an igraph object (network) of the GRN of the in...

Description Usage Arguments Examples

View source: R/in_silico_system.R

Description

Returns an igraph object (network) corresponding to the gene regulatory network of the insilico system, including all types of regulation of only those defined by the user.

Usage

1
getGRN(insilicosystem, edgeType = NULL, showAllVertices = F)

Arguments

insilicosystem

The in silico system (see createInSilicoSystem).

edgeType

The type of interactions to include in the network. If NULL (default value), all the interactions are included. Otherwise, can be either:

  • "TC": return only regulation of transcription

  • "TL": return only regulation of translation

  • "RD": return only regulation of RNA decay

  • "PD": return only regulation of protein decay

  • "PTM": return only regulation of protein post-translational modification

  • "RegComplexes": return only binding interactions, i.e. linking the regulatory complexes to their components.

showAllVertices

Display vertices that don't have any edge? Default is FALSE.

Examples

1
2
3
4
mysystem = createInSilicoSystem(G = 10)
grn = getGRN(mysystem)
grnTC = getGRN(mysystem, edgeType = "TC", showAllVertices = F)
grnTCall = getGRN(mysystem, edgeType = "TC", showAllVertices = T)

sismonr documentation built on Feb. 11, 2020, 9:07 a.m.