Changes between Initial Version and Version 1 of VizAlign


Ignore:
Timestamp:
07/19/06 14:00:43 (18 years ago)
Author:
endres
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VizAlign

    v1 v1  
     1[[TracNav]] 
     2 
     3= VizAlign visualisation system = 
     4 
     5The VizAlign visualisation system enables a developer to analyse a set or series of alignments. This may serve various puposes: 
     6 * bug hunting 
     7 * fine tuning of the algorithms 
     8 * simply to visualise a result 
     9 
     10== Architecture == 
     11 
     12The system consists of two parts: 
     13 * the '''API''', which is statically accessible from anywhere in the developer's code. This API holds a number of alignment sets, represented by instances of {{{de.dfki.km.phaselib.tools.vizAlign.VizAlignDataSet}}}, which is basically list of alignments. The only difference is, that this data structure stores clones of the alignments added, to avoid problems with reused or altered alignments. Each alignment set is accessible via an id string. With this string, the developer can, at any time, add/remove/resort the alignemts in the set. 
     14 * the '''visualisation system instance''', which renders an (interactive) visualisation of an alignment set. It can be activated by calling the ''visualise(id)'' method of the API. In this case, the default visualisation system is instantiated on the alignment set refered by the id. Alternatively, an arbitrary visualisation system instance can be provided for rendering by calling ''visualise(id, renderer)''. These methods issue the immedeate rendering of the selected alignment set. 
     15 
     16== Visualisation Systems == 
     17TODO 
     18 
     19== Code Example == 
     20TODO