Entities | R Documentation |
These functions attempt to add, delete, retrieve or update an Entity
record, or to list Entity
records.
addEntity( .class, ..., .permissions = getOption("GeneHive.permissions"), con = hiveConnection(), verbose = getOption("GeneHive.verbose") ) deleteEntity( .entity_id, con = hiveConnection(), verbose = getOption("GeneHive.verbose") ) getEntity(.entity_id, con = hiveConnection()) updateEntity( .entity_id, ..., con = hiveConnection(), verbose = getOption("GeneHive.verbose") ) listEntities(.class, ..., con = hiveConnection())
.class |
A character string specifying the class of the |
... |
Additional arguments specifying fields of the |
.permissions |
A |
con |
A |
verbose |
A logical value specifying whether messages should be printed |
.entity_id |
A character string or |
In functions deleteEntity
, getEntity
, and updateEntity
,
the .class
argument does not need to be specified, but if present,
these functions will check that it matches the class of the Entity
record corresponding to the identifier in argument .entity_id
.
addEntity
, updateEntity
If the operation is successful, a hiveEntity
object
(invisibly).
getEntity
If the operation is successful, a hiveEntity
object.
deleteEntity
A logical value stating whether the operation was successful.
listEntities
A hiveEntityList
object.
If an error is encountered, the function terminates with a message.
Adam C. Gower agower@bu.edu
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.