Description Usage Arguments Value Examples
first degree neighbors - a neighbor of a peptide is defined as a peptide sequence that differs in at most one amino acid from a given sequence. Additionally, we can restrict neighbors to regard only those sequences that have a certain minimal BLOSUM loading.
1 | getNeighbors(x, blosum = 1)
|
x |
(vector) of character strings of peptide sequences. |
blosum |
minimal BLOSUM loading, defaults to 1 for positive loadings only |
list of neighbor sequences
1 2 3 4 5 | getNeighbors("APE")
getNeighbors(c("HI", "APE"))
getNeighbors(c("HI", "EARNEST", "APE"), blosum=3)
## degree 2 neighbors:
unique(unlist(getNeighbors(getNeighbors("APE"))))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.