Overall, ‘idpr’ aims to integrate tools for the computational analysis of intrinsically disordered proteins within R. This package is used to identify known characteristics of IDPs within a sequence of interest with easily reported and dynamic results. Additionally, this package also includes tools for IDP-based sequence analysis to be used in conjunction with other R packages. See our recently published peer-reviewed publication in PLOS ONE (https://doi.org/10.1371/journal.pone.0266929)
Please Refer to idpr-vignette.Rmd file for a detailed introduction to the idpr package.
Links to the vignettes found at the Bioconductor landing page (here) or
You can install the stable release version version from Bioconductor with:
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("idpr")
Additionally, you can install the development version from Bioconductor with:
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
# The following initializes usage of Bioc devel
BiocManager::install(version='devel')
Or you can install the most recent development version from GitHub with:
# install.packages("devtools") #if not already installed
devtools::install_github("wmm27/idpr")
This is a basic example to quickly profile your protein of interest:
library(idpr)
P53_HUMAN <- TP53Sequences[2] #Getting a pre-loaded sequence from idpr
print(P53_HUMAN)
#> P04637|P53_HUMAN
#> "MEEPQSDPSVEPPLSQETFSDLWKLLPENNVLSPLPSQAMDDLMLSPDDIEQWFTEDPGPDEAPRMPEAAPPVAPAPAAPTPAAPAPAPSWPLSSSVPSQKTYQGSYGFRLGFLHSGTAKSVTCTYSPALNKMFCQLAKTCPVQLWVDSTPPPGTRVRAMAIYKQSQHMTEVVRRCPHHERCSDSDGLAPPQHLIRVEGNLRVEYLDDRNTFRHSVVVPYEPPEVGSDCTTIHYNYMCNSSCMGGMNRRPILTIITLEDSSGNLLGRNSFEVRVCACPGRDRRTEEENLRKKGEPHHELPPGSTKRALPNNTSSSPQPKKKPLDGEYFTLQIRGRERFEMFRELNEALELKDAQAGKEPGGSRAHSSHLKSKKGQSTSRHKKLMFKTEGPDSD"
P53_ID <- "P04637" #Human TP53 UniProt ID
#Generates the IDP Profile:
idprofile(sequence = P53_HUMAN,
uniprotAccession = P53_ID,
proteinName = "TP53 Human", #Optional Argument
window = 11, #Optional Argument
pKaSet = "Lehninger", #Optional Argument
iupredType = "redox" #Optional Argument
)
#> [[1]]
#>
#> [[2]]
#>
#> [[3]]
#>
#> [[4]]
#>
#> [[5]]
#>
#> [[6]]
Please Refer to idpr-vignette.Rmd file for a detailed introduction to the idpr package. Link to the Vignette (here)
For use and details on ‘idpr’, see our peer-reviewed article published in PLOS ONE (https://doi.org/10.1371/journal.pone.0266929)
citation("idpr")
#>
#> To cite idpr in publications, use the citation below and other
#> function-specific sources found in the idpr package documentation:
#>
#> McFadden, W. M., and Yanowitz, J. L. (2022). idpr: A package for
#> profiling and analyzing Intrinsically Disordered Proteins in R. PLOS
#> ONE, 17(4), e0266929. doi:10.1371/journal.pone.0266929
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Article{,
#> title = {idpr: A package for profiling and analyzing Intrinsically Disordered Proteins in R},
#> author = {William M McFadden and Judith L Yanowitz},
#> journal = {PLOS ONE},
#> publisher = {Public Library of Science},
#> year = {2022},
#> volume = {17},
#> number = {4},
#> pages = {e0266929},
#> doi = {10.1371/journal.pone.0266929},
#> url = {https://bioconductor.org/packages/idpr/},
#> }
Sys.time()
#> [1] "2022-04-25 12:20:36 EDT"
Sys.Date()
#> [1] "2022-04-25"
R.version
#> _
#> platform x86_64-apple-darwin17.0
#> arch x86_64
#> os darwin17.0
#> system x86_64, darwin17.0
#> status
#> major 4
#> minor 1.3
#> year 2022
#> month 03
#> day 10
#> svn rev 81868
#> language R
#> version.string R version 4.1.3 (2022-03-10)
#> nickname One Push-Up
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.