Profile-based protein representation derived by PSSM (Position-Specific Scoring Matrix) and auto cross covariance
Source:R/423-extractProtPSSMAcc.R
extractProtPSSMAcc.Rd
Profile-based protein representation derived by PSSM (Position-Specific Scoring Matrix) and auto cross covariance
Arguments
- pssmmat
The PSSM computed by
extractProtPSSM
.- lag
The lag parameter. Must be less than the number of amino acids in the sequence (i.e. the number of columns in the PSSM matrix).
Value
A length lag * 20^2
named numeric vector,
the element names are derived by the amino acid name abbreviation
(crossed amino acid name abbreviation) and lag index.
Details
This function calculates the feature vector based on the PSSM by running PSI-Blast and auto cross covariance tranformation.
References
Wold, S., Jonsson, J., Sjörström, M., Sandberg, M., & Rännar, S. (1993). DNA and peptide sequences and chemical processes multivariately modelled by principal component analysis and partial least-squares projections to latent structures. Analytica chimica acta, 277(2), 239–253.
Examples
x = readFASTA(system.file('protseq/P00750.fasta', package = 'Rcpi'))[[1]]
# \donttest{
dbpath = tempfile('tempdb', fileext = '.fasta')
invisible(file.copy(from = system.file('protseq/Plasminogen.fasta', package = 'Rcpi'), to = dbpath))
pssmmat = extractProtPSSM(seq = x, database.path = dbpath)
#> Error in extractProtPSSM(seq = x, database.path = dbpath): Please install makeblastdb (included in the NCBI BLAST+) or specify makeblastdb.path.
pssmacc = extractProtPSSMAcc(pssmmat, lag = 3)
#> Error: object 'pssmmat' not found
tail(pssmacc)# }
#> Error: object 'pssmacc' not found