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

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

Adding needleman wunsch

File size: 501 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 NeedlemanWunsch(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.