Description Usage Arguments Value Note Source References See Also Examples
TMHMM server offers prediction of transmembrane helices in proteins
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | get_tmhmm(data, ...)
## S3 method for class 'character'
get_tmhmm(data, splitter = 2500L, attempts = 2, progress = FALSE, ...)
## S3 method for class 'data.frame'
get_tmhmm(data, sequence, id, ...)
## S3 method for class 'list'
get_tmhmm(data, ...)
## Default S3 method:
get_tmhmm(data = NULL, sequence, id, ...)
## S3 method for class 'AAStringSet'
get_tmhmm(data, ...)
|
data |
A data frame with protein amino acid sequences as strings in one column and corresponding id's in another. Alternatively a path to a .fasta file with protein sequences. Alternatively a list with elements of class |
... |
currently no additional arguments are accepted apart the ones documented bellow. |
splitter |
An integer indicating the number of sequences to be in each .fasta file that is to be sent to the server. Default is 2500. Change only in case of a server side error. Accepted values are in range of 1 to 10000. |
attempts |
Integer, number of attempts if server unresponsive, at default set to 2. |
progress |
Boolean, whether to show messages of the job id for each batch. Default is FALSE |
sequence |
A vector of strings representing protein amino acid sequences, or the appropriate column name if a data.frame is supplied to data argument. If .fasta file path, or list with elements of class "SeqFastaAA" provided to data, this should be left blank. |
id |
A vector of strings representing protein identifiers, or the appropriate column name if a data.frame is supplied to data argument. If .fasta file path, or list with elements of class "SeqFastaAA" provided to data, this should be left blank. |
A data frame with columns:
Character, name of the submitted sequence.
Integer, length of the protein sequence
Numeric, the expected number of amino acids in transmembrane helices.
Numeric, the expected number of amino acids in transmembrane helices in the first 60 amino acids of the protein.
Integer, the number of predicted transmembrane segments.
Character string, predicted topology of the protein.
This function creates temporary files in the working directory. If something goes wrong during communication with the server and progress was set to TRUE, predictions can be obtained using the web address 'paste("https://services.healthtech.dtu.dk/cgi-bin/webface2.cgi?jobid=", jobid, "&wait=20", sep = "")'.
https://services.healthtech.dtu.dk/service.php?TMHMM-2.0
Krogh A, Larsson B, von Heijne G, Sonnhammer EL (2001) Predicting transmembrane protein topology with a hidden Markov model: application to complete genomes. J Mol Biol 305(3):567-80.
1 2 3 4 5 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.