Description Usage Arguments Value Examples
This function checks the presence of terminal KDEL/HDEL motifs in the provided amino acid equences.
1 | check_khdel(input_obj, pattern = c("prosite", "elm", "strict"))
|
input_obj |
input object of CBSResult class |
pattern |
ER-pattern to check for:
|
ErResult object
1 2 3 4 5 6 7 8 9 10 11 | # check ER retention signals in CBSResult object
# before running signalp or any other
# predictions:
aa <- readAAStringSet(system.file("extdata", "sample_prot_100.fasta",
package = "SecretSanta"))
inp <- CBSResult(in_fasta = aa[1:10])
# generate signalp predictions:
step1_sp2 <- signalp(inp, version = 4, organism = 'euk',
run_mode = 'starter')
# check ER retention signal in the signalp output, PROSITE pattern
et_result <- check_khdel(step1_sp2, pattern = 'prosite')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.