simulatedProfiles: Simulated gene expression profiles dataset.

Description Usage Format References Examples

Description

Simulated gene expression time series for 55 genes and 30 timepoints generated as in Lebre et al (2010). In the simulation model, every gene may be target gene but only genes 51 to 55 are parent genes.

Usage

1

Format

A matrix of 55 row (genes) by 30 columns (timepoints).

References

Statistical inference of the time-varying structure of gene-regulation networks S. Lebre, J. Becq, F. Devaux, M. P. H. Stumpf, G. Lelandais, BMC Systems Biology, 2010, 4:130.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Load the ARTIVA R package
library(ARTIVA)

# Load the simulated profiles dataset
data(simulatedProfiles)

# Name of the target gene to be analyzed with ARTIVA 
targetGene = 1

# Names of the parent genes (typically transcription factors) 
parentGenes = c("TF1", "TF2", "TF3", "TF4", "TF5")

# Plot of the gene expression profiles for target gene and parent genes
traceGeneProfiles(targetData= simulatedProfiles[targetGene,], 
		  parentData= simulatedProfiles[parentGenes,])

###
# ARTIVA analysis searching for potential interactions between the target 
# genes and a predefined list of parent genes. 
###

# Note that the number of iterations in the RJ-MCMC sampling is reduced 
# to in this example to 'niter=20000' in order obtain a quick overview of
# the ARTIVAnet fonction, but it should be increased (e.g. up to 50000)
# for a better parameter estimation.
## Not run: 
ARTIVAtest = ARTIVAsubnet(targetData = simulatedProfiles[targetGene,],
  parentData = simulatedProfiles[parentGenes,],
  targetName = targetGene,
  parentNames = parentGenes,
  niter = 5000,
  savePictures = FALSE)

## End(Not run)

ARTIVA documentation built on May 1, 2019, 6:31 p.m.