Description Usage Arguments Value Examples
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
1  | get_ptm_enzymes_from_list(items)
 | 
items | 
 A list of kinases.  | 
A Dataframe representing the enzymes
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)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.