simulateTumour.Rd
Main function used to produce a simulation
simulateTumour(
birthrates = c(1, 1),
deathrates = c(0.2, 0.2),
mutation_rates = c(16, 16),
clone_start_times = c(0, 256),
fathers = c(0, 0),
simulation_end_time = 1048576,
seed = 42,
number_clonal_mutations = 100,
purity = 1,
min_vaf = 0.01,
depth = 100,
depth_model = 2,
verbose = FALSE,
subset_fractions = numeric()
)
Birth rate(s) of subpopulations
Death rate(s) of subpopulations
Mutation rate(s) per division
Timepoint (in number of reaction) a subpopulation is introduced
Subpopulation (0 based) a subpopulations originate from
Number of reactions performed
Simulation seed
Number of clonal variants
Assumed purity of the tumour
Minimum VAF to report
Sequencing depth
Number specificing the distribution of the sequencing depth to use (0: no sequencing, 1: poisson, 2: overdispersed beta binomial (default), 3: fixed)
Print progress?
Optional, Numeric vector specificing fraction variants are subset to.
A temulator_result_object.