source: branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/substitution/SubstitutionMatrix.java @ 1570

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

Adding FitchMargaliash? Class

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