sismonr tutorial

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  echo = TRUE,
  fig.align = "center",
  eval = F
)

This document is a tutorial demonstrating how to use the sismonr package. Note that a more complete tutorial is available at [https://oliviaab.github.io/sismonr/].

Getting started

Installing Julia

To install Julia, go to https://julialang.org/downloads/ and follow the instructions. In brief:

Adding Julia to the PATH environment variable

For sismonr to be able to use Julia, the Julia executable must be in the PATH environment variable. You can add it as follow:

After this step it is necessary to restart your computer.

Installing sismonr

sismonr is available on the CRAN. You can install it with:

install.packages("sismonr")

If Julia is not installed on your computer or the Julia executable is not in your PATH environment variable, you won't be able to use sismonr.

sismonr resources

An online documentation is available at https://oliviaab.github.io/sismonr/.

sismonr

In order to use sismonr we need to load the package. You will notice that every time you load the package, sismonr checks that the necessary Julia modules are installed. If not, it automatically installs them for you.

library(sismonr)

1. Creating an in silico system

The first step to simulate gene expression data is to generate an in silico system. The in silico system contains the list of genes whose expression we want to simulate along with the Gene Regulatory Network (GRN) representing the regulatory interactions among the genes. We can generate a random in silico system with:

myinsilicosystem = createInSilicoSystem(G = 10, PC.p = 0.7, ploidy = 2)

The different parameters passed to the function allow the user to control different aspects of the generated system. For example, G defines the number of genes present in the system. PC.p gives the probability for each gene to be protein-coding (so setting PC.p = 1 ensures that there are only protein-coding genes in the system). ploidy defines the ploidy of the system, that is, the number of copies of each gene present in the system. A list of all parameters can be seen in the online documentation of sismonr or by typing:

?insilicosystemargs

We'll see the effect of some of these parameters in the next sections.

The function returns an object of class insilicosystem, which is a list containing the different attributes of the system:

class(myinsilicosystem)
names(myinsilicosystem)

The next sections allow you to explore the in silico system we created.

The genes

The list of genes in the in silico system are stored in the genes element:

myinsilicosystem$genes

You can try generating new system by changing some parameters affecting the genes:

## system with only protein-coding genes, all regulators of transcription (PC.TC.p),
## and all regulations are activations (positive regulation - TC.pos.p)
myinsilicosystem2 = createInSilicoSystem(G = 15, PC.p = 1, PC.TC.p = 1, TC.pos.p = 1) 
myinsilicosystem2$genes

## Changing the function used to sample transcription rates for the genes
myinsilicosystem3 = createInSilicoSystem(G = 10,
                                         basal_transcription_rate_samplingfct = function(x){runif(x, 0.1, 0.8)})
myinsilicosystem3$genes

The GRN

The list of regulatory interactions in the system is stored in the edg element:

myinsilicosystem$edg

The regulatory complexes

The list of regulatory complexes in the system is stored in the complexes element. Their kinetic parameters are stored in the complexeskinetics element:

myinsilicosystem$complexes
myinsilicosystem$complexeskinetics

It is likely to be empty if the number of genes is small, as regulatory complexes are generated from regulators targeting a common gene in the GRN. You can try increasing the number of genes in the system so see some complexes.

The complexesTargetReaction object gives the biological function of each complex, with the same code than for genes (e.g. "TC" means regulator of transcription).

myinsilicosystem$complexesTargetReaction

Plotting the GRN

You can visualise the GRN in your system with:

plotGRN(myinsilicosystem)

By default all the types of regulation are drawn. You can also plot only a specific type of regulation:

plotGRN(myinsilicosystem, edgeType = "TC")

Kinetic properties of the regulatory interactions

The edg element contains all the regulations occuring in the system. However each type of regulation is characterised by a distinct set of kinetic properties (e.g. to model a transcription regulation we need to know the binding and unbinding rates of the regulator to the target binding site, and the fold-change induced in the target transcription rate when the regulator is bound). This information is stored in a set of data-frames, one for each type of regulation. These data-frames are found in the mosystem element of the system:

names(myinsilicosystem$mosystem)
myinsilicosystem$mosystem$TCRN_edg
myinsilicosystem$mosystem$TLRN_edg
myinsilicosystem$mosystem$RDRN_edg
myinsilicosystem$mosystem$PDRN_edg
myinsilicosystem$mosystem$PTMRN_edg

2. Creating an in silico population

The second step to simulate gene expression data is to generate an in silico population. In a population, different variants of each gene are segregating (by default with equal frequency). Each gene variant is characterised by a set of QTL effect coefficient values that describe how genetic mutations affect the kinetic properties of the gene. Each in silico individual carries one or more copies of each gene (depending on the ploidy of the system), and these copies are sampled from the list of variants segregating in the population.

Here we create a population of individuals, with 4 variants existing for each gene. We create 3 individuals:

mypop = createInSilicoPopulation(3, myinsilicosystem, ngenevariants = 4)

The first parameter to be passed to createInSilicoPopulation is the number of individuals to be created, and the second is the in silico system we generated in the first step. Additional arguments can be given to the function, to control the properties of the individuals. A list of these arguments are available in the online documentation, or with:

?insilicoindividualargs

The function returns an object of class insilicopopulation, which is a list containing the different attributes of the system:

class(mypop)
names(mypop)

The gene variants

The list of variants segregating in the population for each gene is stored in the GeneVariants element of the in silico population.

mypop$GenesVariants

You can see the effect of changing the parameters passed to the createInSilicoPopulation function. You can even supply your own list of segregating variants and the frequency of these variants:

mypop2 = createInSilicoPopulation(3, myinsilicosystem, ngenevariants = 2)
mypop2$GenesVariants

## Creating a smaller system with only 3 genes
mysystem = createInSilicoSystem(G = 3, PC.p = 1)

## We will create only 1 variant of gene 1, 3 variants of gene 2 and
## 2 variants of gene 3
nbvariants = c(1, 3, 2)

qtlnames = c("qtlTCrate", "qtlRDrate",
             "qtlTCregbind", "qtlRDregrate",
             "qtlactivity", "qtlTLrate",
             "qtlPDrate", "qtlTLregbind",
             "qtlPDregrate", "qtlPTMregrate")

genvariants = lapply(nbvariants, function(x){
  matrix(1, nrow = length(qtlnames), ncol = x,
         dimnames = list(qtlnames, 1:x))
})
names(genvariants) = mysystem$genes$id

## the 2nd variant of gene 2 has a mutation reducing its transcription rate by 3
genvariants$`2`["qtlTCrate", 2] = 0.33
## and the 3rd variant has an increased translation rate
genvariants$`2`["qtlTLrate", 2] = 1.5

## The 2nd variant of gene 3 has a mutation decreasing the activity of
## its active product
genvariants$`3`["qtlactivity", 2] = 0.7

## Allelic frequency of each variant
genvariants.freq = list('1' = c(1),
                        '2' = c(0.6, 0.3, 0.1),
                        '3' = c(0.9, 0.1))

mypop3 = createInSilicoPopulation(10, mysystem,
                                 genvariants = genvariants,
                                 genvariants.freq = genvariants.freq)

The in silico individuals

The list of in silico individuals created is stored in the individualsList element:

names(mypop$individualsList)

Each individual is characterised by the variants that it carries for each gene:

mypop$individualsList$Ind1$haplotype
mypop$individualsList$Ind2$haplotype
mypop$individualsList$Ind3$haplotype

As the individuals are diploid, they have two copies of each genes. The alleles are termed GCN1 and GCN2. Each row represents a gene, and the values in the data-frame correspond to the variant numbers of the genes that the individual carries.

You can visualise the QTL effect coefficients of each variant carried by the individuals:

plotMutations(mypop, myinsilicosystem, nGenesPerRow = 5)

The function plotMutations takes as arguments the in silico population and the in silico system, and plot the value (colour) of each QTL effect coefficient (x-axis) for each allele (y-axis) of each gene (columns) for each individual in the population (rows). As some QTL effect coefficients do not apply to noncoding genes (i.e. mutations that would affect the translation or protein life), they are greyed in the plot.

You can zoom on specific genes, individuals, alleles or sets of QTL effect coefficients:

plotMutations(mypop, myinsilicosystem,
              qtlEffectCoeffs = c("qtlTCrate", "qtlTLrate", "qtlRDrate", "qtlPDrate"),
              inds = c("Ind1", "Ind2"),
              alleles = "GCN2",
              genes = 1:3)

3. Simulating the in silico system

To get the expression of the different genes for each in silico individual, we will perform a stochastic simulation:

sim = simulateInSilicoSystem(myinsilicosystem, mypop, simtime = 1000, ntrials = 5)

or with the parallelised version of the simulation function:

sim = simulateParallelInSilicoSystem(myinsilicosystem, mypop, simtime = 1000, ntrials = 5)

The argument simtime allows you to control the simulation end time in seconds (here we simulate the expression of the genes for 1000 s). ntrials correspond to the number of repetitions of the simulation that will be computed for each individual (here set to 5).

The returned object contains the running time (in seconds) of each individual's simulation.

sim$runningtime

The results of the simulation are stored as a data-frame in the Simulation element of the simulation output:

head(sim$Simulation)

in which each row corresponding to one time-point of one run of a simulation for one in silico individual.

You can visualise the results of your simulations in the form of a time-series of gene expression with:

plotSimulation(sim$Simulation)

The abundance of the different species (separated by RNAs -bottom-, proteins -middle- and regulatory complexes -top-) are plotted over time. As the simulation has been repeated 5 times for each individual, the mean abundance of the molecules over the different repetitions or trials is plotted as a solid line, and the minimum and maximum values are represented by the coloured areas. By default the abundances are plotted on a log10 scale, but you can change that with the option yLogScale = F in the plotSimulation function.

plotSimulation(sim$Simulation, yLogScale = F)

The legend is presented as a table that gives for each component (columns) the different forms in which it can be found. The component names that are numbers correspond to the gene IDs. We can find the different genes either as RNAs or proteins. Gene IDs with the prefix "PTM" correspond to modified forms of proteins. Components with a name starting with a "C" correspond to regulatory complexes.

You can focus the plot on certain individuals or time-period:

plotSimulation(sim$Simulation, inds = c("Ind1"), timeMin = 200, timeMax = 300)

You can also visualise the output of the simulation as a heatmap, with the same arguments as the plotSimulation function:

plotHeatMap(sim$Simulation)

Transforming the simulation results

In the results of the simulation, molecules originating from different alleles of a same gene are differentiated by the suffix GCNi. You can merge these molecules to obtain the abundance of the corresponding molecule regardless of its allele of origin with:

simNoAllele = mergeAlleleAbundance(sim$Simulation)
head(simNoAllele)

Similarly, you can merge non-modified and post-translationally modified versions of a same protein:

simNoPTM = mergePTMAbundance(simNoAllele)
head(simNoPTM)

or the abundance of free and in-complex molecules:

simNoComplex = mergeComplexesAbundance(simNoAllele)
head(simNoComplex)


Try the sismonr package in your browser

Any scripts or data that you put into this service are public.

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