Description Usage Arguments Examples
Load some previously saved simulation data by function saveSimulation
1 | loadSimulation(id)
|
id |
Name the simulation to load which was previously saved by saveSimulation |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | examples_dir = system.file("examples", package = "sim1000G")
vcf_file = file.path(examples_dir, "region.vcf.gz")
vcf = readVCF( vcf_file, maxNumberOfVariants = 100 ,
min_maf = 0.12 ,max_maf = NA)
# For a realistic genetic map
# use the function readGeneticMap
generateUniformGeneticMap()
startSimulation(vcf, totalNumberOfIndividuals = 200)
ped1 = newNuclearFamily(1)
saveSimulation("sim1")
vcf = readVCF( vcf_file, maxNumberOfVariants = 100 ,
min_maf = 0.02 ,max_maf = 0.5)
startSimulation(vcf, totalNumberOfIndividuals = 200)
saveSimulation("sim2")
loadSimulation("sim1")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.