interactors {RpsiXML} | R Documentation |
interactors
gets the list of interactors stored in the given
object. One can also assign a list to replace old interactors.
numInteractors
returns the length of interactors.
interactors(x) interactors(x) <- value numInteractors(x)
x |
An object of the subclass of |
value |
A list of interactors |
The getting method returns a list of interactors. The setting method mutates the object. The count method returns the list length as integer.
Jitao David Zhang <jitao_david.zhang@roche.com>, Tony Chiang <tchiang@ebi.ac.uk>
psimi25InteractionEntry-class
,
psimi25ComplexEntry-class
xmlDir <- system.file("/extdata/psi25files",package="RpsiXML") hprdxml <- file.path(xmlDir, "hprd_200709_test.xml") hprdSet <- parsePsimi25Interaction(hprdxml, HPRD.PSIMI25) interactors(hprdSet) ## Not run: intactComplexxml <- file.path(xmlDir,"intact_complexSample.xml") intactComplexSet <- parsePsimi25Complex(intactComplexxml, INTACT.PSIMI25) interactors(intactComplexSet) numInteractors(intactComplexSet) ## End(Not run)