This package utilizes data derived from the MEROPS database and facilitates retrieving proteolytic enzymes data by mapping peptide termini to known sites where a protease cleaves.
install.packages("devtools")
library("devtools")
install_github("martinry/proteasy")
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("proteasy")
# Example 1
searchSubstrate(protein = "P01042", summarize = TRUE)
# Example 2
searchProtease(protein = "P39900", summarize = TRUE)
# Example 3
protein <- c("P02671", "P02671", "P68871", "P01011")
peptide <- c("FEEVSGNVSPGTR", "FVSETESR", "LLVVYPW", "ITLLSAL")
res <- findProtease(protein = protein, peptide = peptide,
organism = "Homo sapiens")
substrates(res)
proteases(res)
cleavages(res)
# Example 4
browseProtease("P07339", keytype = "UniprotID") # (opens web browser)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.