|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.biojava.bio.alignment.SubstitutionMatrix
public class SubstitutionMatrix
This object is able to read a substitution matrix file and constructs a short
matrix in memory. Every single element of the matrix can be accessed by the
method getValueAt
with the parameters being two BioJava
symbols. This is why it is not necessary to access the matrix directly. If
there is no value for the two specified Symbol
s an
Exception
is thrown.
Substitution matrix files, are available at the NCBI FTP directory.
Field Summary | |
---|---|
protected FiniteAlphabet |
alphabet
|
protected Map<Symbol,Integer> |
colSymbols
|
protected String |
description
|
protected short[][] |
matrix
|
protected short |
max
|
protected short |
min
|
protected String |
name
|
protected Map<Symbol,Integer> |
rowSymbols
|
Constructor Summary | |
---|---|
SubstitutionMatrix(File file)
This constructor can be used to guess the alphabet of this substitution matrix. |
|
SubstitutionMatrix(FiniteAlphabet alpha,
File matrixFile)
This constructs a SubstitutionMatrix object that contains
two Map data structures having BioJava symbols as keys and
the value being the index of the matrix containing the substitution score. |
|
SubstitutionMatrix(FiniteAlphabet alpha,
short match,
short replace)
Constructs a SubstitutionMatrix with every Match and every Replace having the same expenses given by the parameters. |
|
SubstitutionMatrix(FiniteAlphabet alpha,
String matrixString,
String name)
With this constructor it is possible to construct a SubstitutionMatrix object from a substitution matrix file. |
Method Summary | |
---|---|
FiniteAlphabet |
getAlphabet()
Gives the alphabet used by this matrix. |
String |
getDescription()
This gives you the description of this matrix if there is one. |
short |
getMax()
The maximum score in this matrix. |
short |
getMin()
The minimum score of this matrix. |
String |
getName()
Every substitution matrix has a name like "BLOSUM30" or "PAM160". |
static SubstitutionMatrix |
getSubstitutionMatrix(BufferedReader reader)
This constructor can be used to guess the alphabet of this substitution matrix. |
short |
getValueAt(Symbol row,
Symbol col)
There are some substitution matrices containing more columns than lines. |
SubstitutionMatrix |
normalizeMatrix()
With this method you can get a “normalized” SubstitutionMatrix object; however, since this
implementation uses an short matrix, the normalized matrix will be scaled
by ten. |
void |
printMatrix()
Just to perform some test. |
void |
setDescription(String desc)
Sets the description to the given value. |
String |
stringnifyDescription()
Converts the description of the matrix to a String. |
String |
stringnifyMatrix()
Creates a String representation of this matrix. |
String |
toString()
Overrides the inherited method. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected Map<Symbol,Integer> rowSymbols
protected Map<Symbol,Integer> colSymbols
protected short[][] matrix
protected short min
protected short max
protected FiniteAlphabet alphabet
protected String description
protected String name
Constructor Detail |
---|
public SubstitutionMatrix(FiniteAlphabet alpha, File matrixFile) throws BioException, NumberFormatException, IOException
SubstitutionMatrix
object that contains
two Map
data structures having BioJava symbols as keys and
the value being the index of the matrix containing the substitution score.
alpha
- the alphabet of the matrix (e.g., DNA, RNA or PROTEIN, or
PROTEIN-TERM)matrixFile
- the file containing the substitution matrix. Lines starting with '#
'
are comments. The line starting with a white space, is the table
head. Every line has to start with the one letter representation
of the Symbol and then the values for the exchange.
IOException
BioException
NumberFormatException
public SubstitutionMatrix(FiniteAlphabet alpha, String matrixString, String name) throws BioException, NumberFormatException, IOException
System.getProperty("line.separator")
.
Everything else is the same than for the constructor above.
alpha
- The FiniteAlphabet
to usematrixString
- name
- of the matrix.
BioException
IOException
NumberFormatException
public SubstitutionMatrix(FiniteAlphabet alpha, short match, short replace)
alpha
- match
- replace
- public SubstitutionMatrix(File file) throws NumberFormatException, NoSuchElementException, BioException, IOException
file
- A file containing a substitution matrix.
NumberFormatException
NoSuchElementException
BioException
IOException
Method Detail |
---|
public static SubstitutionMatrix getSubstitutionMatrix(BufferedReader reader) throws NumberFormatException, BioException, IOException
reader
-
NumberFormatException
BioException
IOException
public short getValueAt(Symbol row, Symbol col) throws BioException
row
- Symbol of the linecol
- Symbol of the column
BioException
public String getDescription()
public String getName()
public short getMin()
public short getMax()
public void setDescription(String desc)
desc
- a description. This doesn't have to start with '#'.public FiniteAlphabet getAlphabet()
public String stringnifyMatrix()
String
representation of this matrix.
public String stringnifyDescription()
System.getProperty("line.separator")
.
Every line starts with #
.public String toString()
toString
in class Object
public void printMatrix()
public SubstitutionMatrix normalizeMatrix() throws BioException, NumberFormatException, IOException
SubstitutionMatrix
object; however, since this
implementation uses an short matrix, the normalized matrix will be scaled
by ten. If you need values between zero and one, you have to divide every
value returned by getValueAt
by ten.
SubstitutionMatrix
object given
by this substitution matrix. Because this uses an
short
matrix, all values are scaled by 10.
BioException
IOException
NumberFormatException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |