Description Usage Arguments Value Examples
This function parses results of TOPCONS method, used to predict transmembrane domains. The parser is restricted to 'piper'-like behaviour.
1 2 |
input_obj |
an instance of CBSResult class, produced by previous step; |
parse_dir |
dir with archived topcons output (for WSDL-API or WEB outputs) or dir with output produced by stand-alone version. |
topcons_mode |
|
TM |
allowed number of TM domains in mature peptides, recommended value <= 1; use TM = 0 for strict filtering |
SP |
filter according to TOPCONS prediction of signal peptides. TRUE - keep only proteins containg signal peptides according to TOPCONS; FALSE - disable filtering for TOPCONS-based predictions of signal peptides. Deafault = FALSE. |
TopconsResult object
1 2 3 4 5 6 7 8 9 10 | aa <- readAAStringSet(system.file("extdata", "sample_prot_100.fasta",
package = "SecretSanta"), use.names = TRUE)
inp <- CBSResult(in_fasta = aa)
# predict signal peptides:
sp <- signalp(inp, version = 2, organism = 'euk', run_mode = "starter",
legacy_method = 'hmm')
# integrate topcons predictions
p_dir <- system.file("extdata", "rst_SVw4hG.zip", package = "SecretSanta")
tpc <- topcons(input_obj = sp, parse_dir = p_dir, topcons_mode = "WEB-server",
TM = 0, SP = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.