Description Usage Arguments Value Examples
View source: R/gene_annotation.R
Function to parse the site annotation seperated with ";"
1 | parseMutipleSite(site_dataframe, site_type0, single_site = TRUE)
|
site_dataframe |
A dataframe with the active site annotation from UniProt database |
site_type0 |
The site type classification by UniProt database |
single_site |
A logical vector |
A dataframe with the genename and active site information
1 2 3 4 5 | # Load the active site annotation from UniProt database
data('protein_active_site_sce')
Nucleotide_binding_site <- select(sce_site00,Entry, Nucleotide_binding) %>% filter(.,!is.na(Nucleotide_binding))
head(Nucleotide_binding_site)
Nucleotide_binding_site1 <- parseMutipleSite(Nucleotide_binding_site, site_type0 = "NP_BIND", single_site = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.