data(yeast)
Cluster 1
yeast$Cluster1
is a list composed of the following elements:
1) yeast$Cluster1$InitialCluster
: A matrix with in row the genes that belong to
Cluster 1 and in column the different experimental measurements related to the
wild type strain (WT), and strains deleted for the transcription factor YAP1
(DeltaYAP1), PDR1 (DeltaPDR1), PDR3 (DeltaPDR3) and YRR1 (DeltaYRR1). For each
genetic context, 5 time points are available T1 = 30s, T2 = 2min, T3 = 4min,
T4 = 10min and T5 = 20min.
2) yeast$Cluster1$targetData
: A vector with all gene expression measurements
correctly formatted to be analyzed with the ARTIVAsubnet
function.
3) yeast$Cluster1$targetName
: The name of the analyzed cluster.
4) yeast$Cluster1$GeneList
: A vector with the names of the genes that belong to
the analyzed cluster.
5) yeast$Cluster1$parentData
: A matrix with in row the four transcription factors
for which the corresponding genes were deleted (independantly) in knock out
strains. 1 = the gene coding for the transcription factor is present and 0 =
the gene coding for the transcription factor is deleted. This matrix is
correctly formatted to be analyzed with the ARTIVAsubnet
function, therefore
searching for regulatory interactions between YAP1, PDR1, PDR3 and YRR1
transcription factors and the genes that belong to the analyzed cluster.
6) yeast$Cluster1$dataDescription
: A vector indicating the
ordering of the time measurements in the targetData
and
parentData
variables.
Cluster2 to 18
http://www.biologie.ens.fr/lgmgml/publication/benomyl/
Statistical inference of the time-varying structure of gene regulation networks S. Lebre, J. Becq, F. Devaux, MP Stumpf, G. Lelandais., BMC Systems Biology 4:130, 2010.
####
# Datasets related to the analysis of the genomic response of the yeast
# Saccharomyces cerevisiae to an environmental stress induced by
# benomyl (a toxic compound).
# Analysis of the yeast data is presented in the original article of
# ARTIVA (Lebre et al. BMC Syst. Biol, 2010)
####
# Load the yeast dataset
data(yeast)
# This is a a list that comprises information for the 18 clusters of genes
# whose expression is identically modified in strains deleted for
# YAP1, PDR1, PDR3 and YRR1 transcription factors,
# compared to the wild type strain.
# As an illustration : analysis of one cluster
cluster=4
# Different genes in a cluster is considered as repeated measurements.
# Organisation of the different time point measurements is described in
# variable : yeast[[cluster]]$dataDescription
# Beacause of repeated measurements, the minimum segment length is set to
# segMinLength = 1.
# The parentdata is the experiment design (YAP1, PDR1, PDR3 and YRR1
# deletion) described in variable: yeast[[cluster]]$parentData
# Time delay between parent and target genes is fixed to dyn=0.
## Not run:
# ARTIVAtest = ARTIVAsubnet(targetData = yeast[[cluster]]$targetData,
# targetName = yeast[[cluster]]$targetName,
# parentData = yeast[[cluster]]$parentData,
# parentNames = row.names(yeast[[cluster]]$parentData),
# dataDescription = yeast[[cluster]]$dataDescription,
# outputPath = paste("ARTIVA_Results_Cluster", cluster, sep = ""),
# dyn = 0,
# segMinLength = 1,
# edgesThreshold = 0.7,
# niter = 20000)
# ## End(Not run)
# Detailed results can be found in the folder named
# "ARTIVA_Results_Cluster4" (with the subfolders "Estimations" for
# detailled results of the estimated parameters and "Pictures" for
# graphical representations).
Run the code above in your browser using DataLab