Ignore:
Timestamp:
07/08/14 21:38:11 (10 years ago)
Author:
rkrimmel
Message:

Fixed Needleman Wunsch Algorithm

File:
1 edited

Legend:

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

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