Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

network_random

Generates a network.


Description

Generates a network.

Usage

network_random(
  nb,
  time_label,
  exp,
  init,
  regul,
  min_expr,
  max_expr,
  casc.level
)

Arguments

nb

Integer. The number of genes.

time_label

Vector. The time points measurements.

exp

The exponential parameter, as in the barabasi.game function in igraph package.

init

The attractiveness of the vertices with no adjacent edges. See barabasi.game function.

regul

A vector mapping each gene with its number of regulators.

min_expr

Minimum of strength of a non-zero link

max_expr

Maximum of strength of a non-zero link

casc.level

...

Value

A network object.

Author(s)

Nicolas Jung, Frédéric Bertrand , Myriam Maumy-Bertrand.

References

Jung, N., Bertrand, F., Bahram, S., Vallat, L., and Maumy-Bertrand, M. (2014). Cascade: a R-package to study, predict and simulate the diffusion of a signal through a temporal gene network. Bioinformatics, btt705.

Vallat, L., Kemper, C. A., Jung, N., Maumy-Bertrand, M., Bertrand, F., Meyer, N., ... & Bahram, S. (2013). Reverse-engineering the genetic circuitry of a cancer cell with predicted intervention in chronic lymphocytic leukemia. Proceedings of the National Academy of Sciences, 110(2), 459-464.

Examples

set.seed(1)
Net<-network_random(
	nb=100,
	time_label=rep(1:4,each=25),
	exp=1,
	init=1,
	regul=round(rexp(100,1))+1,
	min_expr=0.1,
	max_expr=2,
	casc.level=0.4
	)
plot(Net)

Cascade

Selection, Reverse-Engineering and Prediction in Cascade Networks

v2.0
GPL (>= 2)
Authors
Frederic Bertrand [cre, aut] (<https://orcid.org/0000-0002-0837-8281>), Myriam Maumy-Bertrand [aut] (<https://orcid.org/0000-0002-4615-1512>), Laurent Vallat [ctb], Nicolas Jung [ctb]
Initial release
2021-03-18

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.