Ignore:
Timestamp:
05/29/14 22:43:07 (10 years ago)
Author:
rkrimmel
Message:

new Smith waterman variant

Location:
branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms
Files:
2 added
2 edited

Legend:

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

    r1553 r1558  
    2525                this.signature = signature; 
    2626        } 
     27         
     28        public void printSequence() 
     29        {        
     30                for (int i = 0; i < sequence.length; i++) { 
     31                        System.out.format("%4d", sequence[i]); 
     32                } 
     33                System.out.println(); 
     34        } 
    2735 
    2836} 
  • branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/SmithWaterman.java

    r1555 r1558  
    162162         * Get the maximum value in the score matrix. 
    163163         */ 
    164         private double getMaxScore() { 
     164        public double getMaxScore() { 
    165165                double maxScore = 0; 
    166166 
     
    184184        } 
    185185 
     186         
     187         
    186188        /** 
    187189         * TODO: Iterative Version!!! Output the local alignments ending in the (i, 
     
    272274                        } 
    273275                } 
    274                 // Note: empty alignments are not printed. 
    275276        } 
    276277 
Note: See TracChangeset for help on using the changeset viewer.