Ignore:
Timestamp:
07/04/14 00:38:41 (10 years ago)
Author:
rkrimmel
Message:

Adding needleman wunsch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/AlignmentAlgorithmFactory.java

    r1586 r1587  
    88        public static AlignmentAlgorithm create(int[] input1, int[] input2, SubstitutionMatrix submat,float threshold) { 
    99                 
    10                 return new SmithWaterman(input1,input2,submat,threshold); 
     10                //return new NeedlemanWunsch(input1,input2,submat,threshold); 
     11                return new NeedlemanWunsch(input1,input2,submat,threshold); 
     12                //return new SmithWatermanRepeated(input1,input2,submat,threshold); 
    1113        } 
    1214} 
Note: See TracChangeset for help on using the changeset viewer.