wholeChromosomeDeletion: wholeChromosomeDeletion

Description Usage Arguments Examples

Description

Operator for the deletion of a whole chromosome.

Usage

1
wholeChromosomeDeletion(individuals, chrConf, mutationChance)

Arguments

individuals

dataset returned by Individuals().

chrConf

Configuration of chromosomes returned by splitChromosomes().

mutationChance

Chance for a deletion of a whole chromosome mutation to occur.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
## Not run: 
library(ALL)
data(ALL)

demoALL<-ALL[1:12,1:8]

set.seed(1234)
population<-InitialPopulation(demoALL, 4, 9)
individuals<-Individuals(population)

chrConf<-splitChromosomes(demoALL, 2)
chrConf
individuals

set.seed(123)
wholeChromosomeDeletion(individuals, chrConf, 20)
 
## End(Not run)

dGAselID documentation built on May 2, 2019, 1:27 p.m.