Package: immunogenViewer 1.1.1
immunogenViewer: Visualization and evaluation of protein immunogens
Plots protein properties and visualizes position of peptide immunogens within protein sequence. Allows evaluation of immunogens based on structural and functional annotations to infer suitability for antibody-based methods aiming to detect native proteins.
Authors:
immunogenViewer_1.1.1.tar.gz
immunogenViewer_1.1.1.zip(r-4.5)immunogenViewer_1.1.1.zip(r-4.4)immunogenViewer_1.1.1.zip(r-4.3)
immunogenViewer_1.1.1.tgz(r-4.5-any)immunogenViewer_1.1.1.tgz(r-4.4-any)immunogenViewer_1.1.1.tgz(r-4.3-any)
immunogenViewer_1.1.1.tar.gz(r-4.5-noble)immunogenViewer_1.1.1.tar.gz(r-4.4-noble)
immunogenViewer_1.1.1.tgz(r-4.4-emscripten)immunogenViewer_1.1.1.tgz(r-4.3-emscripten)
immunogenViewer.pdf |immunogenViewer.html✨
immunogenViewer/json (API)
# Install 'immunogenViewer' in R: |
install.packages('immunogenViewer', repos = c('https://bioc.r-universe.dev', 'https://cloud.r-project.org')) |
Bug tracker:https://github.com/kathiwaury/immunogenviewer/issues
On BioConductor:immunogenViewer-1.1.1(bioc 3.21)immunogenViewer-1.0.0(bioc 3.20)
featureextractionproteomicssoftwarevisualization
Last updated 2 months agofrom:b48a51eac7. Checks:1 OK, 3 ERROR, 5 NOTE. Indexed: yes.
Target | Result | Latest binary |
---|---|---|
Doc / Vignettes | OK | Mar 12 2025 |
R-4.5-win | NOTE | Mar 12 2025 |
R-4.5-mac | NOTE | Mar 12 2025 |
R-4.5-linux | ERROR | Mar 12 2025 |
R-4.4-win | NOTE | Mar 12 2025 |
R-4.4-mac | NOTE | Mar 12 2025 |
R-4.4-linux | ERROR | Mar 12 2025 |
R-4.3-win | ERROR | Mar 12 2025 |
R-4.3-mac | NOTE | Mar 12 2025 |
Exports:addImmunogenaddImmunogenListevaluateImmunogengetProteinFeaturesplotImmunogenplotProteinremoveImmunogenrenameImmunogen
Dependencies:AnnotationDbiAnVILBaseaskpassBiobaseBiocBaseUtilsBiocFileCacheBiocGenericsBiostringsbitbit64blobcachemclicolorspacecpp11crayoncurlDBIdbplyrdplyrfansifarverfastmapfilelockgenericsGenomeInfoDbGenomeInfoDbDataggplot2gluegtablehmshttrhttr2IRangesisobandjsonliteKEGGRESTlabelinglatticelifecyclemagrittrMASSMatrixmemoisemgcvmimemunsellnlmeopensslpatchworkpillarpkgconfigplogrpngprettyunitsprogresspurrrR6rappdirsRColorBrewerrjsonconsrlangRSQLiteS4VectorsscalesstringistringrsystibbletidyrtidyselectUCSC.utilsUniProt.wsutf8vctrsviridisLitewithrXVector
Citation
To cite package ‘immunogenViewer’ in publications use:
Waury K (2025). immunogenViewer: Visualization and evaluation of protein immunogens. R package version 1.1.1, https://bioconductor.org/packages/immunogenViewer.
Corresponding BibTeX entry:
@Manual{, title = {immunogenViewer: Visualization and evaluation of protein immunogens}, author = {Katharina Waury}, year = {2025}, note = {R package version 1.1.1}, url = {https://bioconductor.org/packages/immunogenViewer}, }
Readme and manuals
immunogenViewer
The package immunogenViewer
is meant to support researchers in comparing and choosing suitable antibodies provided that information on the immunogen used to raise the antibody is available. When the immunogen of an antibody is known, its binding site within the protein antigen is defined and can be examined in detail. As antibodies raised against peptide immunogens often do not function properly when used to detect natively folded proteins (Brown et al. 2011), examination of the position of the immunogen within the full-length protein can provide insights. Using immunogenViewer
provides an easy approach to visualize, evaluate and compare immunogens within the full-length sequence of a protein. Information on structural and functional annotations of the immunogen and thus antibody binding site can tell the user if an antibody is potentially useful for native protein detection (Trier et al. 2012, Waury et al. 2022).
Specifically, immunogenViewer
can be used to retrieve protein features for a protein of interest using an API call to the UniProtKB and PredictProtein databases. The features are saved on a per-residue level in a dataframe. One or several immunogens can be associated with the protein. The immunogen(s) can then be visualized and evaluated regarding their structure and other annotations that can influence successful antibody recognition within the full-length protein. A summary report of the immunogen can be created to easily compare and select favorable immunogens and their respective antibodies. This package should be used as a pre-selection step to exclude unsuitable antibodies early on. It does not replace comprehensive antibody validation. For more information on validation, please refer to other excellent resources (Roncador et al. 2015, Voskuil et al. 2020).
Installation
The package can currently be installed directly from GitHub.
install.packages("devtools")
devtools::install_github("kathiwaury/immunogenViewer")
library(immunogenViewer)
Package usage
The package can be used to retrieve relevant properties for a protein of interest which are saved in a protein dataframe. Immunogens can be added to the protein dataframe via position or sequence information.
protein <- getProteinFeatures("Q9NZC2")
protein <- addImmunogen(protein, start = 196, end = 230, name = "HPA010917")
protein <- addImmunogen(protein, seq = "HGQKPGTHPPSELD", name = "EB07921")
The full protein sequence with all properties and with the immunogens highlighted can be visualized.
plotProtein(protein)
Specific immunogens within the protein sequence can also be viewed.
plotImmunogen(protein, "ABIN2783734")
For detailed use instructions, please see the vignette and manual.
Contact and bug reports
If you encounter a bug or any issue, please open an issue here. For any other questions or comments, please contact Katharina Waury (k.waury@vu.nl).
Help Manual
Help page | Topics |
---|---|
Add an immunogen to the Protein DataFrame | addImmunogen |
Add multiple immunogens to the Protein DataFrame | addImmunogenList |
Create a summary DataFrame of the structural and functional properties of an immunogen | evaluateImmunogen |
Retrieve structural and functional features to create a protein DataFrame | getProteinFeatures |
Plot protein features of one immunogen region | plotImmunogen |
Plot protein features with immunogens highlighted | plotProtein |
Remove an existing immunogen | removeImmunogen |
Rename an existing immunogen | renameImmunogen |