get_ptm_ppi_from_list: Get post translational modification (PTM) depentdent...

Description Usage Arguments Value Examples

View source: R/api.R

Description

Retrieve a list of post translational modification (PTM) depentdent protein-protein interaction for the given list of kinases. The kinase object should have three fields - "substrate_ac","site_residue","site_position". All with the type String

Usage

1

Arguments

items

A list of kinases.

Value

A dataframe containing the PTM dependent PPI interaction information.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
## Not run: 
kinases = list(
  list(
      substrate_ac="Q15796",
      site_residue="K",
      site_position="19"
  ),
  list(
      substrate_ac="Q15796",
      site_residue="T",
      site_position="8"
 ),
 list(
      substrate_ac="P04637",
      site_residue="K",
      site_position="120"
 )
)
ptm_dep_ppi = get_ptm_ppi_from_list(kinases)

## End(Not run)

iptmnetr documentation built on Dec. 5, 2019, 5:09 p.m.