# Create an instance of a tumor with 10 clones,
# 4 samples, k = 1, neutral evolution and
# added noise with depth = 500
I1 <- create_instance(
n = 10,
m = 4,
k = 1,
selection = "neutral",
depth = 500)
# Create an instance of a tumor with 50 clones,
# 10 samples, k = 5, positive selection and
# added noise with depth = 500
I2 <- create_instance(
n = 50,
m = 10,
k = 5,
selection = "positive",
noisy = TRUE,
depth = 500)
# Create an instance of a tumor with 100 clones,
# 25 samples, k = 0, positive selection without
# noise
I3 <- create_instance(
n = 100,
m = 25,
k = 0,
selection = "positive",
noisy = FALSE)
Run the code above in your browser using DataLab