Description Usage Arguments Value Note Source References Examples
big-PI Plant Predictor is a web server utilizing a scoring algorithm for prediction of GPI modification sites in plants.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | get_big_pi(data, ...)
## S3 method for class 'character'
get_big_pi(data, ...)
## S3 method for class 'data.frame'
get_big_pi(data, sequence, id, ...)
## S3 method for class 'list'
get_big_pi(data, ...)
## Default S3 method:
get_big_pi(
data = NULL,
sequence,
id,
simplify = TRUE,
sleep = 1,
progress = FALSE,
...
)
## S3 method for class 'AAStringSet'
get_big_pi(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. |
sequence |
An 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 |
An 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. |
simplify |
A boolean indicating the type of returned object, defaults to TRUE. |
sleep |
A numeric indicating the pause in seconds between server calls, at default set to 1. |
progress |
Boolean, whether to show the progress bar, at default set to FALSE. |
If simplify == TRUE:
A data frame with columns:
Character, indicating the protein identifier
Logical, did big-Pi predict the presence of a GPI
Character, indicating the quality of the highest scoring omega-site
Integer, indicating the sequence position of the highest scoring omega-site
Numeric, indicating the p-value for the prediction of the highest scoring omega-site
If simplify == FALSE:
A list of predictions, each element named according to the sequence id, containing a two element list:
data frame, resembling the one returned by simplify == TRUE, along with alternative site predictions (if present)
data frame, with profile dependent and profile independent scores
If the server is unable to make a prediction due to non-amino acid letters or length of the sequence, the returned prediction is NA (is.bigpi column).
http://mendel.imp.ac.at/gpi/plant_server.html
Eisenhaber B. Wildpaner M. Schultz CJ. Borner GHH. Dupree P. Eisenhaber F. (2003) Glycosylphosphatidylinositol lipid anchoring of plant proteins. Sensitive prediction from sequence- and genome-wide studies for Arabidopsis and rice. Plant Physiology 133(4): 1691-701
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | library(ragp)
data(at_nsp)
#indexes of some sequences in at_nsp
ind <- c(129, 145, 147, 160, 170)
big_pi_pred <- get_big_pi(sequence = at_nsp$sequence[ind],
id = at_nsp$Transcript.id[ind],
simplify = FALSE)
big_pi_pred <- get_big_pi(data = at_nsp[ind,],
sequence = sequence,
id = Transcript.id,
simplify = TRUE)
big_pi_pred
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.