bio-graphics 1.0 → 1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/classes/Bio/Graphics.html +11 -1
- data/doc/classes/Bio/Graphics/Panel.html +5 -2
- data/doc/classes/Bio/Graphics/Panel.src/M000005.html +4 -4
- data/doc/classes/Bio/Graphics/Panel.src/M000006.html +3 -3
- data/doc/classes/Bio/Graphics/Panel.src/M000007.html +6 -5
- data/doc/classes/Bio/Graphics/Panel/Ruler.html +16 -16
- data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000014.html +6 -14
- data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000015.html +10 -41
- data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000016.html +59 -0
- data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000017.html +20 -0
- data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000018.html +28 -0
- data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000019.html +59 -0
- data/doc/classes/Bio/Graphics/Panel/Track.html +30 -15
- data/doc/classes/Bio/Graphics/Panel/Track.src/M000008.html +8 -5
- data/doc/classes/Bio/Graphics/Panel/Track.src/M000009.html +2 -2
- data/doc/classes/Bio/Graphics/Panel/Track.src/M000010.html +12 -245
- data/doc/classes/Bio/Graphics/Panel/Track/Feature.html +109 -0
- data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000011.html +1 -1
- data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000012.html +39 -0
- data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000013.html +27 -0
- data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000014.html +209 -49
- data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000015.html +48 -0
- data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.html +5 -5
- data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.src/M000013.html +18 -0
- data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.src/M000016.html +18 -0
- data/doc/created.rid +1 -1
- data/doc/files/README_DEV.html +7 -11
- data/doc/files/TUTORIAL.html +3 -3
- data/doc/files/lib/bio-graphics_rb.html +3 -1
- data/doc/files/lib/bio/graphics/feature_rb.html +6 -11
- data/doc/files/lib/bio/graphics/image_map_rb.html +1 -1
- data/doc/files/lib/bio/graphics/panel_rb.html +1 -1
- data/doc/files/lib/bio/graphics/ruler_rb.html +1 -1
- data/doc/files/lib/bio/graphics/track_rb.html +1 -1
- data/doc/fr_method_index.html +8 -4
- data/doc/images/example_labels.png +0 -0
- data/doc/images/glyph_showcase.png +0 -0
- data/doc/images/terms.png +0 -0
- data/doc/index.html +2 -2
- data/images/example_labels.png +0 -0
- data/images/glyph_showcase.png +0 -0
- data/images/terms.png +0 -0
- data/images/terms.svg +146 -132
- data/lib/bio-graphics.rb +2 -1
- data/lib/bio/graphics/feature.rb +304 -0
- data/lib/bio/graphics/panel.rb +15 -11
- data/lib/bio/graphics/ruler.rb +1 -1
- data/lib/bio/graphics/track.rb +23 -254
- data/samples/arkdb_features.rb +8 -8
- data/samples/glyph_showcase.rb +10 -6
- data/test/unit/test_creation.rb +51 -0
- metadata +14 -2
data/doc/created.rid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
Thu Oct 18 18:24:47 +0100 2007
|
data/doc/files/README_DEV.html
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<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‘s @
|
132
|
-
Track object also has its @
|
131
|
+
there‘s @number_of_feature_rows. You‘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 @
|
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 ‘bumped’ down
|
168
168
|
until it can be drawn. This effectively results in <em>rows</em> that
|
169
|
-
contain the features. The @
|
170
|
-
rows (to be able to calculate the height of the track afterwards).
|
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‘ll change that later…)
|
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
|
------------------------------------------------------
|
data/doc/files/TUTORIAL.html
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<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/
|
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): "svn checkout
|
303
|
-
svn
|
303
|
+
svn://rubyforge.org/var/svn/bio-graphics"
|
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>
|
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
|
89
89
|
cairo
|
90
|
+
pango
|
91
|
+
stringio
|
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>
|
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 <jan.aerts@bbsrc.ac.uk>
|
75
71
|
|
76
|
-
|
77
|
-
<
|
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
|
77
|
+
</div>
|
82
78
|
</div>
|
83
79
|
|
84
|
-
|
85
80
|
</div>
|
86
81
|
|
87
82
|
|
data/doc/fr_method_index.html
CHANGED
@@ -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/
|
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/
|
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#
|
35
|
-
<a href="classes/Bio/Graphics/Panel/Track/Feature/PixelRange.html#
|
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
|
-
|
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>
|
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
|
data/images/glyph_showcase.png
CHANGED
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
|
-
|
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/
|
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="
|
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
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
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>
|