source: branches/items/HELP_SOURCE/oldhelp/sequence_colors.hlp

Last change on this file was 8621, checked in by westram, 13 years ago

merge from e4fix [8340] [8341] [8342] [8343] [8344] [8345] [8346] [8347] [8348] [8349] [8350] [8353] [8354] [8362] [8370] [8371] [8372] [8373] [8374] [8375]

  • changed refresh behavior
    • refresh_all_windows
      • call via timer (every 2 sec)
      • replaced by refresh-requests where needed
      • added ED4_trigger_instant_refresh
    • set_refresh → request_refresh
    • removed duplicated refresh-request in ED4_consensus_definition_changed
    • replaced ED4_refresh_window by ED4_request_full_refresh
      • some callers now request fewer refreshes
      • all callers now cause refresh of ALL windows
    • ED4_cursor::ShowCursor no longer updates global AWARs when used for display only
    • refresh_window does not handle updates (it is only used to quickly draw the cursor)
      • renamed into special_window_refresh() to disencourage usage
    • removed implicit clearing of refresh flags previously done when refresh propagated down through windows, areas and hierarchy. Instead refresh_all_windows explicitely calls clear_refresh when done.
  • cleaned up resize requests
  • removed extra sync in ED4_resize_cb
  • removed special handling of 1st call to ED4_expose_cb (no idea why, but this fixes an ancient bug: "save props in hide-all-gaps mode")
    • no longer abuse ED4_expose_cb
  • trigger relayout
    • when helix/seq spacing is changed
  • ED4_WinContext
    • missing when NDS changed
    • expect one in ED4_root::special_window_refresh
    • provide from ED4_cursor::delete_cursor
  • EDIT4 scrolling
    • scrollbar code refactored
    • SLIDER_OFFSET was missing in calculation of lower/right folding lines (fixed)
    • picture size announced by ED4_window::update_scrolled_rectangle was off by 1
    • fixed scroll/resize bugs introduced in [8618]
  • added debug code
    • print backtrace on negative folding line dimension
    • print mismatch if slider postions and folding line dimensions are out of sync
  • sequence color mapping
    • fixed broken window layout
    • increased number of sets to 8
      • added symbolic ambiguity set as default
    • hide default value '=0'
  • group name generation (index-safety)
  • execute callback-guards and post-useraction-callback whenever an awar change is directly triggered by a widget
  • moved (ARB_)strNULLcmp to global header
  • doc/fix unexpectable behavior (NULL is bigger that any text) with a test
  • dont use magics for system folder
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1#Please insert up references in the next lines (line starts with keyword UP)
2UP      arb.hlp
3UP      glossary.hlp
4UP      e4.hlp
5
6#Please insert subtopic references  (line starts with keyword SUB)
7
8# Hypertext links in helptext can be added like this: LINK{ref.hlp|http://add|bla@domain}
9
10#************* Title of helpfile !! and start of real helpfile ********
11TITLE           Sequence color mapping
12
13OCCURRENCE      ARB_EDIT4/Properties/Sequence color mapping
14
15DESCRIPTION     The ARB_EDIT4 editor uses two tables to translate the
16                original sequence into a colored displayed sequence:
17
18                First Step:
19
20                      Each character in each sequence is translated into
21                      a new character and a color index (0..9) using the definitions
22                      from the 'Sequence color mapping' subwindow.
23
24                      - There are different sets (1..8) of color shemes,
25                        using two columns for each set.
26
27                      - At the top of the window you may choose which set is used
28                        for translation of nucleotides and aminoacids.
29
30                      - The first column shows the characters which should be
31                        translated/replaced.
32
33                      - The Nth + 1 column holds the translation instruction for set N.
34                        Each of its fields has two characters:
35
36                        - the character which should replace the original value,
37                          or '=' if no translation should be performed.
38
39                        - a color index for this character, between 0 and 9.
40
41                        The default for the translation instruction is '=0'
42
43                Second Step:
44
45                       Each of the color indices (0..9) corresponds to one of
46                       the colors defined in <Properties/Change colors & fonts>,
47                       namely to
48
49                              index     corresponding color
50                              0         SEQUENCES
51                              1         HELIX(1)
52                              2         COLOR 2
53                              3         COLOR 3
54                              .         .
55                              .         .
56                              9         COLOR 9
57
58
59EXAMPLES        You may use this feature to show:
60
61                - A simplified version of your amino acid alignment.
62                - Only YR instead of ACGTU
63                - Only ambiguous symbols
64                - etc.
65
66BUGS            No bugs known
Note: See TracBrowser for help on using the repository browser.