source: trunk/autoquest-plugin-alignment/src/main/java/de/ugoe/cs/autoquest/plugin/alignment/substitution/SubstitutionMatrix.java @ 1323

Last change on this file since 1323 was 1323, checked in by rkrimmel, 10 years ago

Added Substitution Package, Fixed Array access error in SimpleSequenceGenerator?

File size: 211 bytes
Line 
1package de.ugoe.cs.autoquest.plugin.alignment.substitution;
2
3public interface SubstitutionMatrix {
4
5        public String info();
6       
7        public double getDistance(int pos1, int pos2);
8
9        public double getGapPenalty();
10
11       
12}
Note: See TracBrowser for help on using the repository browser.