Description Usage Arguments Value Author(s) See Also Examples
Detach a Process object from a set of Site objects aggregated by a Sequence object.
1 2 | ## S3 method for class 'Sequence'
detachProcess(this, process, index, ...)
|
this |
A Sequence object. |
process |
A Process object. |
index |
An integer vector specifying a set of positions. It is set to 1:seq$length if omitted. |
... |
Not used. |
The Sequence object (invisible).
Botond Sipos, Gregory Jordan
For more information see Sequence
.
1 2 3 4 5 6 7 8 9 | # create a sequence object with two processes attached
p<-JC69()
s<-Sequence(length=4,alphabets=list(NucleotideAlphabet()),processes=list(list(p,K80())))
# get the list of attached processes
s$processes
# detach JC69 from range c(1,4)
detachProcess(s,p,c(1,4))
s$processes
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.