blosum
Return BLOSUM scoring matrix
Syntax
Matrix
= blosum(Identity
)
[Matrix
, MatrixInfo
]
= blosum(Identity
)
... = blosum(Identity
,
...'Extended', ExtendedValue
, ...)
... = blosum(Identity
,
...'Order', OrderValue
, ...)
Input Arguments
Identity | Scalar specifying a percent identity level. Choices are:
|
ExtendedValue | Controls the listing of extended amino acid codes. Choices
are true (default) or false . |
OrderValue | Character vector or string containing legal amino acid characters that specifies the order
amino acids are listed in the matrix. The length of the character vector
or string must be 20 or
24 . |
Output Arguments
Matrix | BLOSUM (Blocks Substitution Matrix) scoring matrix with a specified percent identity. |
MatrixInfo | Structure of information about
|
Description
returns
a BLOSUM (Blocks Substitution Matrix) scoring matrix with a specified
percent identity. The default ordering of the output includes the
extended characters Matrix
= blosum(Identity
)B
, Z
, X
,
and *
.
A R N D C Q E G H I L K M F P S T W Y V B Z X *
[
returns Matrix
, MatrixInfo
]
= blosum(Identity
)MatrixInfo
,
a structure of information about Matrix
,
a BLOSUM matrix. MatrixInfo
contains the
following fields:
Name
Scale
Entropy
ExpectedScore
HighestScore
LowestScore
Order
... = blosum(
calls Identity
, ...'PropertyName
', PropertyValue
,
...)blosum
with optional properties
that use property name/property value pairs. You can specify one or
more properties in any order. Each PropertyName
must
be enclosed in single quotation marks and is case insensitive. These
property name/property value pairs are as follows:
... = blosum(
controls
the listing of extended amino acid codes. Choices are Identity
,
...'Extended', ExtendedValue
, ...)true
(default)
or false
. If ExtendedValue
is false
,
returns the scoring matrix for the standard 20
amino
acids. Ordering of the output when ExtendedValue
is false
is
A R N D C Q E G H I L K M F P S T W Y V
... = blosum(
returns a BLOSUM matrix ordered by Identity
,
...'Order', OrderValue
, ...) OrderValue
, a character
vector or string containing legal amino acid characters that specifies the order amino
acids are listed in the matrix. The length of the character vector or string must be
20
or 24
.
Examples
Version History
Introduced before R2006a