rba_reactome_interactors_psicquic {rbioapi}R Documentation

The interface From Reactome to PSICQUIC

Description

You can call this function in two scenarios: 1- To retrieve information of all available PSICQUIC resources, call the function without providing any argument; i.e rba_reactome_interactors_psicquic(). 2-To retrieve a list of interactors of specific protein(s), fill out the function's arguments.

Usage

rba_reactome_interactors_psicquic(
  proteins = NULL,
  resource = NULL,
  details = TRUE,
  ...
)

Arguments

proteins

Proteins to retrieve PSICQUIC interactors.

resource

The PSICQUIC resource for your supplied proteins. Call rba_reactome_interactors_psicquic() without argument to get the available options.

details

Logical: If TRUE (default) a detailed list of interactors will be returned. If FALSE, only a summary of available interactors will be returned.

...

rbioapi option(s). See rba_options's arguments manual for more information on available options.

Value

Depending your input, a list containing the detailed or summary of PSICQUIC interactions or a data frame of all registered PSICQUIC resources.

Corresponding API Resources

"POST https://reactome.org/ContentService/interactors/psicquic/molecules/ {resource}/details"
"POST https://reactome.org/ContentService/interactors/psicquic/molecules/ {resource}/summary"
"GET https://reactome.org/ContentService/interactors/psicquic/resources"

References

See Also

Other "Reactome Content Service - Molecule Interactors": rba_reactome_interactors_static()

Examples


rba_reactome_interactors_psicquic()


rba_reactome_interactors_psicquic(proteins = c("TP53", "MYC"),
    resource = "BioGrid",
    details = FALSE)


rba_reactome_interactors_psicquic(proteins = c("TP53", "MYC"),
    resource = "BioGrid",
    details = TRUE)



[Package rbioapi version 0.8.1 Index]