largeSegmentDeletion {dGAselID}R Documentation

largeSegmentDeletion

Description

Operator for the large segment deletion.

Usage

largeSegmentDeletion(individuals, chrConf, mutationChance)

Arguments

individuals

dataset returned by Individuals().

chrConf

Configuration of chromosomes returned by splitChromosomes().

mutationChance

Chance for a large segment deletion mutation to occur.

Examples

## 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)
largeSegmentDeletion(individuals, chrConf, 20)
 
## End(Not run)

[Package dGAselID version 1.2 Index]