source: branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/AlignmentAlgorithmFactory.java @ 1589

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

Refactoring and code cleanup

File size: 499 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3import de.ugoe.cs.autoquest.tasktrees.alignment.matrix.SubstitutionMatrix;
4
5public class AlignmentAlgorithmFactory {
6       
7       
8        public static AlignmentAlgorithm create(int[] input1, int[] input2, SubstitutionMatrix submat,float threshold) {
9               
10                //return new SmithWaterman(input1,input2,submat,threshold);
11                //return new NeedlemanWunsch(input1,input2,submat,threshold);
12                return new SmithWatermanRepeated(input1,input2,submat,threshold);
13        }
14}
Note: See TracBrowser for help on using the repository browser.