get_ptm_enzymes_from_list: Get PTM Enzymes from list

Description Usage Arguments Value Examples

View source: R/api.R

Description

Retrieve PTM enxymes from 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 representing the enzymes

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"
 )
)
enzymes = get_ptm_enzymes_from_list(kinases)

## End(Not run)

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