bio-graphics 1.0 → 1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. data/doc/classes/Bio/Graphics.html +11 -1
  2. data/doc/classes/Bio/Graphics/Panel.html +5 -2
  3. data/doc/classes/Bio/Graphics/Panel.src/M000005.html +4 -4
  4. data/doc/classes/Bio/Graphics/Panel.src/M000006.html +3 -3
  5. data/doc/classes/Bio/Graphics/Panel.src/M000007.html +6 -5
  6. data/doc/classes/Bio/Graphics/Panel/Ruler.html +16 -16
  7. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000014.html +6 -14
  8. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000015.html +10 -41
  9. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000016.html +59 -0
  10. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000017.html +20 -0
  11. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000018.html +28 -0
  12. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000019.html +59 -0
  13. data/doc/classes/Bio/Graphics/Panel/Track.html +30 -15
  14. data/doc/classes/Bio/Graphics/Panel/Track.src/M000008.html +8 -5
  15. data/doc/classes/Bio/Graphics/Panel/Track.src/M000009.html +2 -2
  16. data/doc/classes/Bio/Graphics/Panel/Track.src/M000010.html +12 -245
  17. data/doc/classes/Bio/Graphics/Panel/Track/Feature.html +109 -0
  18. data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000011.html +1 -1
  19. data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000012.html +39 -0
  20. data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000013.html +27 -0
  21. data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000014.html +209 -49
  22. data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000015.html +48 -0
  23. data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.html +5 -5
  24. data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.src/M000013.html +18 -0
  25. data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.src/M000016.html +18 -0
  26. data/doc/created.rid +1 -1
  27. data/doc/files/README_DEV.html +7 -11
  28. data/doc/files/TUTORIAL.html +3 -3
  29. data/doc/files/lib/bio-graphics_rb.html +3 -1
  30. data/doc/files/lib/bio/graphics/feature_rb.html +6 -11
  31. data/doc/files/lib/bio/graphics/image_map_rb.html +1 -1
  32. data/doc/files/lib/bio/graphics/panel_rb.html +1 -1
  33. data/doc/files/lib/bio/graphics/ruler_rb.html +1 -1
  34. data/doc/files/lib/bio/graphics/track_rb.html +1 -1
  35. data/doc/fr_method_index.html +8 -4
  36. data/doc/images/example_labels.png +0 -0
  37. data/doc/images/glyph_showcase.png +0 -0
  38. data/doc/images/terms.png +0 -0
  39. data/doc/index.html +2 -2
  40. data/images/example_labels.png +0 -0
  41. data/images/glyph_showcase.png +0 -0
  42. data/images/terms.png +0 -0
  43. data/images/terms.svg +146 -132
  44. data/lib/bio-graphics.rb +2 -1
  45. data/lib/bio/graphics/feature.rb +304 -0
  46. data/lib/bio/graphics/panel.rb +15 -11
  47. data/lib/bio/graphics/ruler.rb +1 -1
  48. data/lib/bio/graphics/track.rb +23 -254
  49. data/samples/arkdb_features.rb +8 -8
  50. data/samples/glyph_showcase.rb +10 -6
  51. data/test/unit/test_creation.rb +51 -0
  52. metadata +14 -2
data/doc/created.rid CHANGED
@@ -1 +1 @@
1
- Mon Oct 01 11:03:19 +0100 2007
1
+ Thu Oct 18 18:24:47 +0100 2007
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Mon Oct 01 11:03:17 +0100 2007</td>
59
+ <td>Thu Oct 18 14:49:59 +0100 2007</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -128,8 +128,8 @@ The user has to start with a
128
128
  <p>
129
129
  When this happens, among other things, the instance variable @tracks is
130
130
  created that will later contain the actual Track objects. In addition,
131
- there&#8216;s @number_of_times_bumped. You&#8216;ll later see that each
132
- Track object also has its @number_of_times_bumped. The panel needs this
131
+ there&#8216;s @number_of_feature_rows. You&#8216;ll later see that each
132
+ Track object also has its @number_of_feature_rows. The panel needs this
133
133
  information to know how far it has to go down before it can start drawing a
134
134
  track: the first track will be just below the ruler, but the vertical
135
135
  coordinates of the second one depend on the height of all the ones that
@@ -157,21 +157,17 @@ own, they can only be created by using a Panel method rather than a Track
157
157
  method.
158
158
  </p>
159
159
  <pre>
160
- my_track_1 = my_panel.add_track(name, feature_colour = [0,0,1], feature_glyph = 'generic')
160
+ my_track_1 = my_panel.add_track(name, label = false, feature_colour = [0,0,1], feature_glyph = 'generic')
161
161
  </pre>
162
162
  <p>
163
163
  This creates a new Track object and adds it to the @tracks array of the
164
164
  Panel object. Several instance variables are set for the Track object,
165
165
  including @features (which is an array of Feature objects for that track)
166
- and @number_of_times_bumped. Every time a feature cannot be drawn because
166
+ and @number_of_feature_rows. Every time a feature cannot be drawn because
167
167
  it would overlap with another one, it will be &#8216;bumped&#8217; down
168
168
  until it can be drawn. This effectively results in <em>rows</em> that
169
- contain the features. The @number_of_times_bumped is just the number of
170
- rows (to be able to calculate the height of the track afterwards). I admit
171
- that this variable should be renamed to something like
172
- @number_of_feature_rows or something, because the value is actually the
173
- number of times bumped + 1. In the example below, @number_of_times_bumped
174
- is 3 (instead of 2). (I&#8216;ll change that later&#8230;)
169
+ contain the features. The @number_of_feature_rows is just the number of
170
+ rows (to be able to calculate the height of the track afterwards).
175
171
  </p>
176
172
  <pre>
177
173
  ------------------------------------------------------
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Sat Sep 29 18:23:07 +0100 2007</td>
59
+ <td>Thu Oct 18 14:19:48 +0100 2007</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -70,7 +70,7 @@
70
70
 
71
71
  <div id="description">
72
72
  <p>
73
- <img src="../images/example.png" />
73
+ <img src="../images/example_labels.png" />
74
74
  </p>
75
75
  <h1><a href="../classes/Bio/Graphics.html">Bio::Graphics</a> tutorial</h1>
76
76
  <p>
@@ -300,7 +300,7 @@ There are different ways to install the library.
300
300
  </p>
301
301
  <ul>
302
302
  <li>Export for SVN (for the latest development version): &quot;svn checkout
303
- svn+ssh://jandot@rubyforge.org//var/svn/bio-graphics&quot;
303
+ svn://rubyforge.org/var/svn/bio-graphics&quot;
304
304
 
305
305
  </li>
306
306
  <li>As a rubygem: download the bio-graphics-1.0.gem from the website, and do
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Fri Sep 28 20:03:31 +0100 2007</td>
59
+ <td>Thu Oct 18 18:13:09 +0100 2007</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -87,6 +87,8 @@
87
87
  <div class="name-list">
88
88
  bio&nbsp;&nbsp;
89
89
  cairo&nbsp;&nbsp;
90
+ pango&nbsp;&nbsp;
91
+ stringio&nbsp;&nbsp;
90
92
  </div>
91
93
  </div>
92
94
 
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Fri Sep 28 20:39:05 +0100 2007</td>
59
+ <td>Thu Oct 18 18:24:17 +0100 2007</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -68,20 +68,15 @@
68
68
 
69
69
  <div id="contextContent">
70
70
 
71
- <div id="description">
72
- <h1>bio/graphics/feature.rb - feature class</h1>
73
- <table>
74
- <tr><td valign="top">Copyright:</td><td>Copyright (C) 2007 Jan Aerts &lt;jan.aerts@bbsrc.ac.uk&gt;
75
71
 
76
- </td></tr>
77
- <tr><td valign="top">License:</td><td>The Ruby License
78
-
79
- </td></tr>
80
- </table>
72
+ <div id="requires-list">
73
+ <h3 class="section-bar">Required files</h3>
81
74
 
75
+ <div class="name-list">
76
+ yaml&nbsp;&nbsp;
77
+ </div>
82
78
  </div>
83
79
 
84
-
85
80
  </div>
86
81
 
87
82
 
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Fri Sep 28 20:03:31 +0100 2007</td>
59
+ <td>Tue Oct 09 20:42:28 +0100 2007</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Mon Oct 01 11:00:37 +0100 2007</td>
59
+ <td>Thu Oct 18 14:47:09 +0100 2007</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Sat Sep 29 19:35:12 +0100 2007</td>
59
+ <td>Thu Oct 18 05:05:46 +0100 2007</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Mon Oct 01 10:51:11 +0100 2007</td>
59
+ <td>Thu Oct 18 18:18:39 +0100 2007</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -22,17 +22,21 @@
22
22
  <div id="index-entries">
23
23
  <a href="classes/Bio/Graphics/Panel/Track.html#M000009">add_feature (Bio::Graphics::Panel::Track)</a><br />
24
24
  <a href="classes/Bio/Graphics/Panel.html#M000006">add_track (Bio::Graphics::Panel)</a><br />
25
- <a href="classes/Bio/Graphics/Panel/Ruler.html#M000014">calculate_tick_distance (Bio::Graphics::Panel::Ruler)</a><br />
25
+ <a href="classes/Bio/Graphics/Panel/Track/Feature.html#M000012">arrow (Bio::Graphics::Panel::Track::Feature)</a><br />
26
+ <a href="classes/Bio/Graphics/Panel/Ruler.html#M000018">calculate_tick_distance (Bio::Graphics::Panel::Ruler)</a><br />
27
+ <a href="classes/Bio/Graphics/Panel/Track/Feature.html#M000013">connector (Bio::Graphics::Panel::Track::Feature)</a><br />
28
+ <a href="classes/Bio/Graphics/Panel/Track/Feature.html#M000014">draw (Bio::Graphics::Panel::Track::Feature)</a><br />
26
29
  <a href="classes/Bio/Graphics/Panel.html#M000007">draw (Bio::Graphics::Panel)</a><br />
30
+ <a href="classes/Bio/Graphics/Panel/Ruler.html#M000019">draw (Bio::Graphics::Panel::Ruler)</a><br />
27
31
  <a href="classes/Bio/Graphics/Panel/Track.html#M000010">draw (Bio::Graphics::Panel::Track)</a><br />
28
- <a href="classes/Bio/Graphics/Panel/Ruler.html#M000015">draw (Bio::Graphics::Panel::Ruler)</a><br />
32
+ <a href="classes/Bio/Graphics/Panel/Track/Feature.html#M000015">find_row (Bio::Graphics::Panel::Track::Feature)</a><br />
29
33
  <a href="classes/Bio/Graphics/Panel/Track.html#M000008">new (Bio::Graphics::Panel::Track)</a><br />
30
34
  <a href="classes/Bio/Graphics/Panel.html#M000005">new (Bio::Graphics::Panel)</a><br />
31
35
  <a href="classes/ImageMap.html#M000001">new (ImageMap)</a><br />
32
36
  <a href="classes/ImageMap/ImageMapElement.html#M000003">new (ImageMap::ImageMapElement)</a><br />
33
37
  <a href="classes/Bio/Graphics/Panel/Track/Feature.html#M000011">new (Bio::Graphics::Panel::Track::Feature)</a><br />
34
- <a href="classes/Bio/Graphics/Panel/Ruler.html#M000013">new (Bio::Graphics::Panel::Ruler)</a><br />
35
- <a href="classes/Bio/Graphics/Panel/Track/Feature/PixelRange.html#M000012">new (Bio::Graphics::Panel::Track::Feature::PixelRange)</a><br />
38
+ <a href="classes/Bio/Graphics/Panel/Ruler.html#M000017">new (Bio::Graphics::Panel::Ruler)</a><br />
39
+ <a href="classes/Bio/Graphics/Panel/Track/Feature/PixelRange.html#M000016">new (Bio::Graphics::Panel::Track::Feature::PixelRange)</a><br />
36
40
  <a href="classes/ImageMap.html#M000002">to_s (ImageMap)</a><br />
37
41
  <a href="classes/ImageMap/ImageMapElement.html#M000004">to_s (ImageMap::ImageMapElement)</a><br />
38
42
  </div>
Binary file
Binary file
data/doc/images/terms.png CHANGED
Binary file
data/doc/index.html CHANGED
@@ -5,12 +5,12 @@
5
5
 
6
6
  <!--
7
7
 
8
- RDoc Documentation
8
+ Bio::Graphics documentation
9
9
 
10
10
  -->
11
11
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
12
12
  <head>
13
- <title>RDoc Documentation</title>
13
+ <title>Bio::Graphics documentation</title>
14
14
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
15
15
  </head>
16
16
  <frameset rows="20%, 80%">
Binary file
Binary file
data/images/terms.png CHANGED
Binary file
data/images/terms.svg CHANGED
@@ -9,17 +9,31 @@
9
9
  xmlns:xlink="http://www.w3.org/1999/xlink"
10
10
  xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
11
  xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="1052.3622"
13
- height="744.09448"
14
- id="svg2"
12
+ id="svg2288"
15
13
  sodipodi:version="0.32"
16
14
  inkscape:version="0.45.1"
15
+ width="800"
16
+ height="365"
17
17
  version="1.0"
18
- sodipodi:docbase="/home/aertsj/Documents/Projects/20070924_RT3097_BioGraphics/images"
18
+ sodipodi:docbase="/home/aertsj/LocalDocuments/bio-graphics/trunk/images"
19
19
  sodipodi:docname="terms.svg"
20
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
20
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
21
+ inkscape:export-filename="/home/aertsj/LocalDocuments/bio-graphics/trunk/images/terms.png"
22
+ inkscape:export-xdpi="90"
23
+ inkscape:export-ydpi="90">
24
+ <metadata
25
+ id="metadata2293">
26
+ <rdf:RDF>
27
+ <cc:Work
28
+ rdf:about="">
29
+ <dc:format>image/svg+xml</dc:format>
30
+ <dc:type
31
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
32
+ </cc:Work>
33
+ </rdf:RDF>
34
+ </metadata>
21
35
  <defs
22
- id="defs4">
36
+ id="defs2291">
23
37
  <marker
24
38
  inkscape:stockid="Arrow1Lend"
25
39
  orient="auto"
@@ -35,132 +49,132 @@
35
49
  </marker>
36
50
  </defs>
37
51
  <sodipodi:namedview
38
- id="base"
39
- pagecolor="#ffffff"
40
- bordercolor="#666666"
41
- borderopacity="1.0"
42
- gridtolerance="10000"
43
- guidetolerance="10"
44
- objecttolerance="10"
45
- inkscape:pageopacity="0.0"
46
- inkscape:pageshadow="2"
47
- inkscape:zoom="1.3432653"
48
- inkscape:cx="478.61669"
49
- inkscape:cy="477.62578"
50
- inkscape:document-units="px"
51
- inkscape:current-layer="layer1"
52
- width="1052.3622px"
53
- height="744.09449px"
54
- inkscape:window-width="1280"
55
52
  inkscape:window-height="750"
53
+ inkscape:window-width="1280"
54
+ inkscape:pageshadow="2"
55
+ inkscape:pageopacity="0.0"
56
+ guidetolerance="10.0"
57
+ gridtolerance="10.0"
58
+ objecttolerance="10.0"
59
+ borderopacity="1.0"
60
+ bordercolor="#666666"
61
+ pagecolor="#ffffff"
62
+ id="base"
63
+ inkscape:zoom="1.02"
64
+ inkscape:cx="411.76471"
65
+ inkscape:cy="175.14706"
56
66
  inkscape:window-x="0"
57
- inkscape:window-y="0" />
58
- <metadata
59
- id="metadata7">
60
- <rdf:RDF>
61
- <cc:Work
62
- rdf:about="">
63
- <dc:format>image/svg+xml</dc:format>
64
- <dc:type
65
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
66
- </cc:Work>
67
- </rdf:RDF>
68
- </metadata>
69
- <g
70
- inkscape:label="Layer 1"
71
- inkscape:groupmode="layer"
72
- id="layer1">
73
- <image
74
- y="149.01341"
75
- x="69.698372"
76
- id="image2218"
77
- height="245"
78
- width="800"
79
- sodipodi:absref="/home/aertsj/Documents/Projects/20070924_RT3097_BioGraphics/images/example.png"
80
- xlink:href="example.png" />
81
- <rect
82
- style="fill:#6ae432;fill-opacity:0.46448088;stroke:none;stroke-width:1.40473521;stroke-linejoin:round;stroke-opacity:1"
83
- id="rect3194"
84
- width="805.83954"
85
- height="88.185356"
86
- x="67.947731"
87
- y="286.45731" />
88
- <text
89
- xml:space="preserve"
90
- style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
91
- x="627.5752"
92
- y="401.64539"
93
- id="text5134"><tspan
94
- sodipodi:role="line"
95
- id="tspan5136"
96
- x="627.5752"
97
- y="401.64539">Track</tspan></text>
98
- <path
99
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
100
- d="M 629.80855,388.98966 L 610.45273,364.42267"
101
- id="path5138"
102
- sodipodi:nodetypes="cc" />
103
- <rect
104
- style="fill:#d02e16;fill-opacity:0.46448088;stroke:none;stroke-linejoin:round;stroke-opacity:1"
105
- id="rect6307"
106
- width="815.92218"
107
- height="35.733818"
108
- x="64.767548"
109
- y="146.29749" />
110
- <path
111
- sodipodi:type="arc"
112
- style="fill:#0209fb;fill-opacity:0.55191255;stroke:none;stroke-linejoin:round;stroke-opacity:1"
113
- id="path7278"
114
- sodipodi:cx="442.57822"
115
- sodipodi:cy="272.11029"
116
- sodipodi:rx="10.794591"
117
- sodipodi:ry="10.422363"
118
- d="M 453.37281 272.11029 A 10.794591 10.422363 0 1 1 431.78363,272.11029 A 10.794591 10.422363 0 1 1 453.37281 272.11029 z"
119
- transform="translate(-2.9778182,0)" />
120
- <text
121
- xml:space="preserve"
122
- style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
123
- x="477.88785"
124
- y="263.92819"
125
- id="text8249"><tspan
126
- sodipodi:role="line"
127
- id="tspan8251"
128
- x="477.88785"
129
- y="263.92819">Feature</tspan></text>
130
- <text
131
- xml:space="preserve"
132
- style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
133
- x="331.97473"
134
- y="123.97075"
135
- id="text8253"><tspan
136
- sodipodi:role="line"
137
- id="tspan8255"
138
- x="331.97473"
139
- y="123.97075">Ruler</tspan></text>
140
- <path
141
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
142
- d="M 364.78273,124.33607 L 411.68337,152.62535"
143
- id="path8257"
144
- sodipodi:nodetypes="cc" />
145
- <path
146
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
147
- d="M 474.962,260.57124 L 445.18382,269.50471"
148
- id="path8259"
149
- sodipodi:nodetypes="cc" />
150
- <path
151
- sodipodi:type="arc"
152
- style="fill:#0209fb;fill-opacity:0.55191255;stroke:none;stroke-linejoin:round;stroke-opacity:1"
153
- id="path8261"
154
- sodipodi:cx="442.57822"
155
- sodipodi:cy="272.11029"
156
- sodipodi:rx="10.794591"
157
- sodipodi:ry="10.422363"
158
- d="M 453.37281 272.11029 A 10.794591 10.422363 0 1 1 431.78363,272.11029 A 10.794591 10.422363 0 1 1 453.37281 272.11029 z"
159
- transform="matrix(4.2413793,0,0,1,-1423.7692,-50.622902)" />
160
- <path
161
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
162
- d="M 475.70645,251.26556 L 454.86173,225.95412"
163
- id="path8263"
164
- sodipodi:nodetypes="cc" />
165
- </g>
67
+ inkscape:window-y="0"
68
+ inkscape:current-layer="svg2288" />
69
+ <image
70
+ xlink:href="example_labels.png"
71
+ sodipodi:absref="/home/aertsj/LocalDocuments/bio-graphics/trunk/images/example_labels.png"
72
+ width="800"
73
+ height="365"
74
+ id="image2295"
75
+ x="0"
76
+ y="0" />
77
+ <rect
78
+ style="fill:#d02e16;fill-opacity:0.46448089;stroke:none;stroke-linejoin:round;stroke-opacity:1"
79
+ id="rect6307"
80
+ width="815.92218"
81
+ height="35.733818"
82
+ x="-6.9806962"
83
+ y="-1.8865167" />
84
+ <text
85
+ xml:space="preserve"
86
+ style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
87
+ x="264.2088"
88
+ y="-30.312824"
89
+ id="text8253"
90
+ sodipodi:linespacing="125%"><tspan
91
+ sodipodi:role="line"
92
+ id="tspan8255"
93
+ x="264.2088"
94
+ y="-30.312824">Ruler</tspan></text>
95
+ <path
96
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
97
+ d="M 305.8403,-31.908288 L 352.74094,-3.6190077"
98
+ id="path8257"
99
+ sodipodi:nodetypes="cc" />
100
+ <text
101
+ xml:space="preserve"
102
+ style="font-size:12px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;line-height:125%"
103
+ x="732.52533"
104
+ y="240.59735"
105
+ id="text5134"
106
+ sodipodi:linespacing="125%"><tspan
107
+ sodipodi:role="line"
108
+ id="tspan5136"
109
+ x="732.52533"
110
+ y="240.59735">Track</tspan></text>
111
+ <path
112
+ sodipodi:type="arc"
113
+ style="fill:#0209fb;fill-opacity:0.55191255;stroke:none;stroke-linejoin:round;stroke-opacity:1"
114
+ id="path7278"
115
+ sodipodi:cx="442.57822"
116
+ sodipodi:cy="272.11029"
117
+ sodipodi:rx="10.794591"
118
+ sodipodi:ry="10.422363"
119
+ d="M 453.37281 272.11029 A 10.794591 10.422363 0 1 1 431.78363,272.11029 A 10.794591 10.422363 0 1 1 453.37281 272.11029 z"
120
+ transform="translate(-91.164966,-131.63624)" />
121
+ <text
122
+ xml:space="preserve"
123
+ style="font-size:12px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;line-height:125%"
124
+ x="447.54382"
125
+ y="131.31154"
126
+ id="text8249"
127
+ sodipodi:linespacing="125%"><tspan
128
+ sodipodi:role="line"
129
+ id="tspan8251"
130
+ x="447.54382"
131
+ y="131.31154">Feature</tspan></text>
132
+ <path
133
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
134
+ d="M 440.69642,131.87618 L 363.85942,137.86847"
135
+ id="path8259"
136
+ sodipodi:nodetypes="cc" />
137
+ <path
138
+ sodipodi:type="arc"
139
+ style="fill:#0209fb;fill-opacity:0.55191255;stroke:none;stroke-linejoin:round;stroke-opacity:1"
140
+ id="path8261"
141
+ sodipodi:cx="442.57822"
142
+ sodipodi:cy="272.11029"
143
+ sodipodi:rx="10.794591"
144
+ sodipodi:ry="10.422363"
145
+ d="M 453.37281 272.11029 A 10.794591 10.422363 0 1 1 431.78363,272.11029 A 10.794591 10.422363 0 1 1 453.37281 272.11029 z"
146
+ transform="matrix(4.2413793,0,0,1,-1493.3289,-185.20032)" />
147
+ <path
148
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
149
+ d="M 442.42126,117.66854 L 411.77262,95.298269"
150
+ id="path8263"
151
+ sodipodi:nodetypes="cc" />
152
+ <rect
153
+ style="fill:#6ae432;fill-opacity:0.46448089;stroke:none;stroke-width:1.40473521;stroke-linejoin:round;stroke-opacity:1"
154
+ id="rect3194"
155
+ width="805.83954"
156
+ height="88.185356"
157
+ x="-7.8217263"
158
+ y="261.10339" />
159
+ <path
160
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
161
+ d="M 727.89591,239.70636 L 668.34402,270.04133"
162
+ id="path5138"
163
+ sodipodi:nodetypes="cc" />
164
+ <text
165
+ xml:space="preserve"
166
+ style="font-size:12px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;line-height:125%"
167
+ x="522.54974"
168
+ y="220.45403"
169
+ id="text2181"
170
+ sodipodi:linespacing="125%"><tspan
171
+ sodipodi:role="line"
172
+ id="tspan2183"
173
+ x="522.54974"
174
+ y="220.45403">Label</tspan></text>
175
+ <path
176
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
177
+ d="M 519.97202,211.59722 L 468.26327,187.03023"
178
+ id="path2185"
179
+ sodipodi:nodetypes="cc" />
166
180
  </svg>