Description Usage Arguments Value Citations for each Plot See Also Examples
The IDPRofile is a summation of many features of the idpr package,
conveniently grouped into one function for quick analysis. This combines
many plotting functions in this package. These include:
chargeHydropathyPlot
chargeCalculationLocal
scaledHydropathyLocal
structuralTendencyPlot
All of the above linked functions only require the sequence argument
to output plots of characteristics associated with IDPs. The function also
includes options for IUPred functions. The function does one of the
following based on user-specified parameters:
iupred
iupredAnchor
iupredRedox
The IUPred function used depends on the argument of iupredType. All
require the UniProt Accession to make a proper connection to the IUPred2A
REST API. If the UniProt Accession is not specified, the IUPred plot is
skipped.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | idprofile(
sequence,
uniprotAccession = NA,
proteinName = NA,
iupredType = "long",
window = 9,
pH = 7.2,
pKaSet = "IPC_protein",
structuralTendencyType = "bar",
structuralTendencySummarize = FALSE,
disorderPromoting = c("P", "E", "S", "Q", "K", "A", "G"),
disorderNeutral = c("D", "T", "R"),
orderPromoting = c("M", "N", "V", "H", "L", "F", "Y", "I", "W", "C")
)
|
sequence |
amino acid sequence as a single character string or vector of single characters. It also supports a single character string that specifies the location of a .fasta or .fa file. |
uniprotAccession |
character string specifying the UniProt Accession of the protein of interest. Used to fetch predictions from IUPreds REST API. Default is NA. Keep as NA if you do not have a UniProt Accession. |
proteinName |
character string, optional. Used to add protein name to the title in ggplot. |
iupredType |
character string specifying the type of IUPred2 prediction
to retrieve. Can be c("long", "short", "glob", "anchor", "redox"). "long"
by default. "long", "short", and "glob" use the |
window |
a positive, odd integer. 7 by default. Sets the size of sliding window, must be an odd number. The window determines the number of residues to be analyzed and averaged for each position along the sequence. |
pH |
numeric value, 7.0 by default. The environmental pH used to calculate residue charge. |
pKaSet |
A character string or data frame. "IPC_protein" by default. Character string to load specific, preloaded pKa sets. c("EMBOSS", "DTASelect", "Solomons", "Sillero", "Rodwell", "Lehninger", "Toseland", "Thurlkill", "Nozaki", "Dawson", "Bjellqvist", "ProMoST", "Vollhardt", "IPC_protein", "IPC_peptide") Alternatively, the user may supply a custom pKa dataset. The format must be a data frame where: Column 1 must be a character vector of residues named "AA" AND Column 2 must be a numeric vector of pKa values. |
structuralTendencyType |
a character string specifying the type of plot
the |
structuralTendencySummarize |
a logical value specifying the
|
disorderPromoting, disorderNeutral, orderPromoting |
character vectors of individual residues to be matched with the input sequence. Defaults:
It is not recommended to change these. Arguments passed to
|
4 or 5 plots, depending if a UniProt Accession is provided.
chargeHydropathyPlot
Kozlowski, L. P. (2016). IPC – Isoelectric Point Calculator. Biology Direct, 11(1), 55. https://doi.org/10.1186/s13062-016-0159-9
Kyte, J., & Doolittle, R. F. (1982). A simple method for displaying the hydropathic character of a protein. Journal of molecular biology, 157(1), 105-132.
Uversky, V. N. (2016). Paradoxes and wonders of intrinsic disorder: Complexity of simplicity. Intrinsically Disordered Proteins, 4(1), e1135015. https://doi.org/10.1080/21690707.2015.1135015
Uversky, V. N., Gillespie, J. R., & Fink, A. L. (2000). Why are “natively unfolded” proteins unstructured under physiologic conditions?. Proteins: structure, function, and bioinformatics, 41(3), 415-427. https://doi.org/10.1002/1097-0134(20001115)41:3<415::AID-PROT130>3.0.CO;2-7
If a pKa set is specified, see pKaData
chargeCalculationLocal
Kozlowski, L. P. (2016). IPC – Isoelectric Point Calculator. Biology Direct, 11(1), 55. https://doi.org/10.1186/s13062-016-0159-9
If a pKa set is specified, see pKaData
scaledHydropathyLocal
Kyte, J., & Doolittle, R. F. (1982). A simple method for displaying the hydropathic character of a protein. Journal of molecular biology, 157(1), 105-132.
structuralTendencyPlot
Uversky, V. N. (2013). A decade and a half of protein intrinsic disorder: Biology still waits for physics. Protein Science, 22(6), 693-724. doi:10.1002/pro.2261
iupred
,
iupredAnchor
,
iupredRedox
Bálint Mészáros, Gábor Erdős, Zsuzsanna Dosztányi, IUPred2A: context-dependent prediction of protein disorder as a function of redox state and protein binding, Nucleic Acids Research, Volume 46, Issue W1, 2 July 2018, Pages W329–W337, https://doi.org/10.1093/nar/gky384
Erdős, G., & Dosztányi, Z. (2020). Analyzing protein disorder with IUPred2A. Current Protocols in Bioinformatics, 70, e99. https://doi.org/10.1002/cpbi.99
chargeHydropathyPlot
chargeCalculationLocal
scaledHydropathyLocal
structuralTendencyPlot
iupred
iupredAnchor
iupredRedox
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #For most functions, a protein sequence is all that is needed.
#The UniProt ID is optional but recommended for IUPred results.
proteinID <- "P04637"
p53Seq <- idpr:::TP53Sequences[2]
## Not run:
idprofile(
sequence = p53Seq,
uniprotAccession = proteinID)
#changing the iupred to redox
## and getting a pie chart for structuralTendency.
idprofile(
sequence = p53Seq,
uniprotAccession = proteinID,
pKaSet = EMBOSS,
iupredType = "redox",
structuralTendencyType = "pie")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.