View source: R/predict_n_coincidence_tmh_peptide.R
predict_n_coincidence_tmh_peptide | R Documentation |
Predict the number of n-mers and the number of n-mers that overlap with at least one amino acid with a TMH for one peptide.
predict_n_coincidence_tmh_peptide(
protein_sequence,
peptide_length,
verbose = FALSE,
ic50_prediction_tool
)
protein_sequence |
a protein sequence |
peptide_length |
length of the peptide in amino acids |
verbose |
set to TRUE for more output |
ic50_prediction_tool |
tool to predict the IC50 from a
peptide. Possible values are:
|
a tibble with
n_spots number of spots for the n-mer
n_spots_tmh number of spots that have one amino acid overlapping with a TMH
Richèl J.C. Bilderbeek
library(pureseqtmr)
if (is_pureseqtm_installed()) {
protein_sequence <- paste0(
"MYSFVSEETGTLIVNSVLLFLAFVVFLLV",
"TLAILTALRLCAYCCNIVNVSLVKPSFYVYSRV"
)
predict_n_coincidence_tmh_peptide(
protein_sequence = protein_sequence,
peptide_length = 9,
ic50_prediction_tool = "EpitopePrediction"
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.