Description Usage Arguments Details Value Author(s) See Also Examples
Given a previously built network encoded in a simple data.frame, initialize a co-regulatory network object coregnet
. This can be used on networks inferred from gene expression data by other algorithms (ARACNe, GENIE3 ...) but also on ChIP-seq data or on network based on Transcription Factor Binding Site analysis. If the input network does not contain a dscription of the type of regulation (activation, inhibition) an expression data set is needed.
1 |
GRN |
A data.frame containing the network. A two column data.frame should contain the regulator in column one and the target gene in column two. A three column data.frame should contain the target in column one, all the co-activators and co-repressors seperated by a space in column two and three respectively. |
expressionDATA |
If the input GRN is only a two column data.frame, the expression data is needed to set each regulator of a target gene as an activator or a repressor. |
In the case of a two column data.frame, the pearson correlation coefficient is used to determine wether a given regulator is an activator (R-squared >= 0) or a repressor (R-squared < 0).
In order to import a network and initialize a new coregnet object the input data.frame should have three columns, the first containing the target genes, then the activators and finally the inhibitors. Target genes can be present in multiple lines. Several regulators can be present in column 2 and 3 if they are separated by a space. Below is an example of a toy network :
A;R1 R2;R3 R4
A;R1 R5;R3 R6
B;R1 R2 R3;NA
...
Returns a coregnet
object.
Remy Nicolle <remy.c.nicolle AT gmail.com>
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.