Description Usage Arguments Value Examples
Predict sift scores from a protein alignment
1 | predictFromAlignment(aln, cores = 1)
|
aln |
path to alignment file in fasta format or character vector of protein sequences |
cores |
number of cores for parallel processing (default: 1) |
matrix of sift scores
1 2 3 4 5 6 7 8 9 10 11 | # Generate dummy alignment
aln = c('SSSS', 'STTT', 'SYSY', 'ASST', 'KKHS')
# Generate matrix of sift scores
sift_mat = predictFromAlignment(aln)
# Show summary of run
summary(sift_mat)
# Convert to data frame and filter out unreliable predictions
sift_df = filterPredictions(sift_mat, score_thresh = 0.05, residue_thresh = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.