Description Usage Arguments Value Author(s) See Also Examples
Check whether a Process object is attached to a Site object.
1 2 | ## S3 method for class 'Site'
isAttached(this, process, ...)
|
this |
A Site object. |
process |
A Process object. |
... |
Not used. |
TRUE or FALSE.
Botond Sipos, Gregory Jordan
Site Process attachProcess detachProcess getProcesses setProcesses
1 2 3 4 5 6 7 8 9 10 | # create a Site object
s<-Site(alphabet=NucleotideAlphabet())
# create a Process object
p<-JC69()
# check if p is attached to s
isAttached(s,p)
# attach p to s
s$processes<-list(p)
isAttached(s,p)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.