source: trunk/autoquest-plugin-guitar/src/main/java/de/ugoe/cs/autoquest/plugin/alignment/Match.java @ 1308

Last change on this file since 1308 was 1303, checked in by rkrimmel, 11 years ago

Adding Match class, Smith Waterman algorithm and Substitution Matrix class

File size: 134 bytes
Line 
1package de.ugoe.cs.autoquest.plugin.alignment;
2
3public class Match {
4
5       
6        private float score;
7        private int start;
8        private int end;
9}
Note: See TracBrowser for help on using the repository browser.