Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/906-parSeqSim.R
Parallellized Protein/DNA Sequence Similarity Calculation based on Sequence Alignment
1 |
protlist |
A length |
cores |
Integer. The number of CPU cores to use for parallel execution,
default is |
type |
Type of alignment, default is |
submat |
Substitution matrix, default is |
This function implemented the parallellized version for calculating protein/DNA sequence similarity based on sequence alignment.
A n
x n
similarity matrix.
Min-feng Zhu <wind2zhu@163.com>, Nan Xiao <http://nanx.me>
See twoSeqSim
for protein sequence alignment
for two protein/DNA sequences. See parGOSim
for
protein/DNA similarity calculation based on
Gene Ontology (GO) semantic similarity.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Be careful when testing this since it involves parallelisation
# and might produce unpredictable results in some environments
require(Biostrings)
require(foreach)
require(doParallel)
s1 = readFASTA(system.file('protseq/P00750.fasta', package = 'BioMedR'))[[1]]
s2 = readFASTA(system.file('protseq/P08218.fasta', package = 'BioMedR'))[[1]]
s3 = readFASTA(system.file('protseq/P10323.fasta', package = 'BioMedR'))[[1]]
s4 = readFASTA(system.file('protseq/P20160.fasta', package = 'BioMedR'))[[1]]
s5 = readFASTA(system.file('protseq/Q9NZP8.fasta', package = 'BioMedR'))[[1]]
plist = list(s1, s2, s3, s4, s5)
psimmat = parSeqSim(plist, cores = 2, type = 'local', submat = 'BLOSUM62')
print(psimmat)
s11 = readFASTA(system.file('dnaseq/hs.fasta', package = 'BioMedR'))[[1]]
s21 = readFASTA(system.file('dnaseq/hs.fasta', package = 'BioMedR'))[[2]]
s31 = readFASTA(system.file('dnaseq/hs.fasta', package = 'BioMedR'))[[3]]
s41 = readFASTA(system.file('dnaseq/hs.fasta', package = 'BioMedR'))[[4]]
s51 = readFASTA(system.file('dnaseq/hs.fasta', package = 'BioMedR'))[[5]]
plist1 = list(s11, s21, s31, s41, s51)
psimmat1 = parSeqSim(plist1, cores = 2, type = 'local', submat = 'BLOSUM62')
print(psimmat1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.