Learn R Programming

phylosim (version 3.0.5)

setAcceptBy.GeneralInDel: Set the function used for accepting/rejecting indel events

Description

Set the function used for accepting/rejecting indel events.

The function object must have the following arguments: process (the caller process), sequence (the target sequence), window (a vector containing the positions affecting acceptance).

Usage

# S3 method for GeneralInDel
setAcceptBy(this, value, ...)

Arguments

this

A GeneralInDel object.

value

A function object.

...

Not used.

Value

The function object (invisible).

See Also

For more information see GeneralInDel.

Examples

Run this code
# NOT RUN {
	# create a GeneralInDel object
	# rejecting half of the events
	o<-GeneralInDel(
                   rate=1,
                   propose.by=function(process){return(5)},
                   accept.by=function( ){sample(c(TRUE,FALSE),1)}
                   );
	# set/get the acceptBy function
	setAcceptBy(o,value=function( ){return(FALSE)})	# reject all events
	getAcceptBy(o)
	# set/get acceptBy function via virtual field
	o$acceptBy<-function(){return(TRUE)}		# accept all events
	o$acceptBy
 
# }

Run the code above in your browser using DataLab