# run the model
set.seed(1)
test <- FALSE
if(test){
mod = sim.BipartiteEvol(nx = 8,ny = 4,NG = 800,
D = 3, muP = 0.1 , muH = 0.1,
alphaP = 0.12,alphaH = 0.12,
rP = 10, rH = 10,
verbose = 100, thin = 5)
#build the genealogies
gen = make_gen.BipartiteEvol(mod)
plot(gen$H)
#compute the phylogenies
phy1 = define_species.BipartiteEvol(gen,threshold=1)
#plot the result
plot_div.BipartiteEvol(gen,phy1, 1)
#build the network
net = build_network.BipartiteEvol(gen, phy1)
trait.id = 1
plot_net.BipartiteEvol(gen,phy1,trait.id, net,mod, nx = nx, spatial = FALSE)
## add time steps to a former run
seed=as.integer(10)
set.seed(seed)
mod = sim.BipartiteEvol(nx = 8,ny = 4,NG = 200,
D = 3, muP = 0.1 , muH = 0.1,
alphaP = 0.12,alphaH = 0.12,
rP = 10, rH = 10,
verbose = 100, thin = 5,
P=mod$P,H=mod$H) # former run output
# update the genealogy
gen = make_gen.BipartiteEvol(mod,
treeP=gen$P, treeH=gen$H)
# update the phylogenies...
phy1 = define_species.BipartiteEvol(gen,threshold=1)
#... and the network
net = build_network.BipartiteEvol(gen, phy1)
trait.id = 1
plot_net.BipartiteEvol(gen,phy1,trait.id, net,mod, nx = 10, spatial = FALSE)
}
Run the code above in your browser using DataLab