bio-graphics 1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. data/doc/classes/Bio.html +135 -0
  2. data/doc/classes/Bio/Graphics.html +247 -0
  3. data/doc/classes/Bio/Graphics/Panel.html +344 -0
  4. data/doc/classes/Bio/Graphics/Panel.src/M000005.html +29 -0
  5. data/doc/classes/Bio/Graphics/Panel.src/M000006.html +19 -0
  6. data/doc/classes/Bio/Graphics/Panel.src/M000007.html +67 -0
  7. data/doc/classes/Bio/Graphics/Panel/Ruler.html +238 -0
  8. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000008.html +20 -0
  9. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000009.html +28 -0
  10. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000010.html +54 -0
  11. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000013.html +20 -0
  12. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000014.html +28 -0
  13. data/doc/classes/Bio/Graphics/Panel/Ruler.src/M000015.html +59 -0
  14. data/doc/classes/Bio/Graphics/Panel/Track.html +342 -0
  15. data/doc/classes/Bio/Graphics/Panel/Track.src/M000008.html +23 -0
  16. data/doc/classes/Bio/Graphics/Panel/Track.src/M000009.html +42 -0
  17. data/doc/classes/Bio/Graphics/Panel/Track.src/M000010.html +285 -0
  18. data/doc/classes/Bio/Graphics/Panel/Track.src/M000011.html +23 -0
  19. data/doc/classes/Bio/Graphics/Panel/Track.src/M000012.html +43 -0
  20. data/doc/classes/Bio/Graphics/Panel/Track.src/M000013.html +259 -0
  21. data/doc/classes/Bio/Graphics/Panel/Track/Feature.html +292 -0
  22. data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000011.html +65 -0
  23. data/doc/classes/Bio/Graphics/Panel/Track/Feature.src/M000014.html +65 -0
  24. data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.html +155 -0
  25. data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.src/M000012.html +18 -0
  26. data/doc/classes/Bio/Graphics/Panel/Track/Feature/PixelRange.src/M000015.html +18 -0
  27. data/doc/classes/ImageMap.html +185 -0
  28. data/doc/classes/ImageMap.src/M000001.html +18 -0
  29. data/doc/classes/ImageMap.src/M000002.html +24 -0
  30. data/doc/classes/ImageMap/ImageMapElement.html +187 -0
  31. data/doc/classes/ImageMap/ImageMapElement.src/M000003.html +19 -0
  32. data/doc/classes/ImageMap/ImageMapElement.src/M000004.html +20 -0
  33. data/doc/created.rid +1 -0
  34. data/doc/files/README_DEV.html +432 -0
  35. data/doc/files/TUTORIAL.html +358 -0
  36. data/doc/files/lib/bio-graphics_rb.html +121 -0
  37. data/doc/files/lib/bio/graphics/feature_rb.html +113 -0
  38. data/doc/files/lib/bio/graphics/image_map_rb.html +113 -0
  39. data/doc/files/lib/bio/graphics/panel_rb.html +113 -0
  40. data/doc/files/lib/bio/graphics/ruler_rb.html +113 -0
  41. data/doc/files/lib/bio/graphics/track_rb.html +113 -0
  42. data/doc/fr_class_index.html +35 -0
  43. data/doc/fr_file_index.html +34 -0
  44. data/doc/fr_method_index.html +41 -0
  45. data/doc/images/example.png +0 -0
  46. data/doc/images/glyph_showcase.png +0 -0
  47. data/doc/images/terms.png +0 -0
  48. data/doc/images/terms.svg +166 -0
  49. data/doc/index.html +24 -0
  50. data/images/example.png +0 -0
  51. data/images/glyph_showcase.png +0 -0
  52. data/images/terms.png +0 -0
  53. data/images/terms.svg +166 -0
  54. data/lib/bio-graphics.rb +18 -0
  55. data/lib/bio/graphics/feature.rb +136 -0
  56. data/lib/bio/graphics/image_map.rb +37 -0
  57. data/lib/bio/graphics/panel.rb +205 -0
  58. data/lib/bio/graphics/ruler.rb +96 -0
  59. data/lib/bio/graphics/track.rb +387 -0
  60. data/samples/arkdb_features.rb +37 -0
  61. data/samples/data.txt +32 -0
  62. data/samples/glyph_showcase.rb +29 -0
  63. metadata +137 -0
@@ -0,0 +1,113 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>File: track.rb</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="fileHeader">
50
+ <h1>track.rb</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>lib/bio/graphics/track.rb
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Mon Oct 01 10:51:11 +0100 2007</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+ <div id="description">
72
+ <h1>bio/graphics/track - track 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
+
76
+ </td></tr>
77
+ <tr><td valign="top">License:</td><td>The Ruby License
78
+
79
+ </td></tr>
80
+ </table>
81
+
82
+ </div>
83
+
84
+
85
+ </div>
86
+
87
+
88
+ </div>
89
+
90
+
91
+ <!-- if includes -->
92
+
93
+ <div id="section">
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+ <!-- if method_list -->
103
+
104
+
105
+ </div>
106
+
107
+
108
+ <div id="validator-badges">
109
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
110
+ </div>
111
+
112
+ </body>
113
+ </html>
@@ -0,0 +1,35 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Classes
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Classes</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Classes</h1>
22
+ <div id="index-entries">
23
+ <a href="classes/Bio.html">Bio</a><br />
24
+ <a href="classes/Bio/Graphics.html">Bio::Graphics</a><br />
25
+ <a href="classes/Bio/Graphics/Panel.html">Bio::Graphics::Panel</a><br />
26
+ <a href="classes/Bio/Graphics/Panel/Ruler.html">Bio::Graphics::Panel::Ruler</a><br />
27
+ <a href="classes/Bio/Graphics/Panel/Track.html">Bio::Graphics::Panel::Track</a><br />
28
+ <a href="classes/Bio/Graphics/Panel/Track/Feature.html">Bio::Graphics::Panel::Track::Feature</a><br />
29
+ <a href="classes/Bio/Graphics/Panel/Track/Feature/PixelRange.html">Bio::Graphics::Panel::Track::Feature::PixelRange</a><br />
30
+ <a href="classes/ImageMap.html">ImageMap</a><br />
31
+ <a href="classes/ImageMap/ImageMapElement.html">ImageMap::ImageMapElement</a><br />
32
+ </div>
33
+ </div>
34
+ </body>
35
+ </html>
@@ -0,0 +1,34 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Files
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Files</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Files</h1>
22
+ <div id="index-entries">
23
+ <a href="files/README_DEV.html">README.DEV</a><br />
24
+ <a href="files/TUTORIAL.html">TUTORIAL</a><br />
25
+ <a href="files/lib/bio-graphics_rb.html">lib/bio-graphics.rb</a><br />
26
+ <a href="files/lib/bio/graphics/feature_rb.html">lib/bio/graphics/feature.rb</a><br />
27
+ <a href="files/lib/bio/graphics/image_map_rb.html">lib/bio/graphics/image_map.rb</a><br />
28
+ <a href="files/lib/bio/graphics/panel_rb.html">lib/bio/graphics/panel.rb</a><br />
29
+ <a href="files/lib/bio/graphics/ruler_rb.html">lib/bio/graphics/ruler.rb</a><br />
30
+ <a href="files/lib/bio/graphics/track_rb.html">lib/bio/graphics/track.rb</a><br />
31
+ </div>
32
+ </div>
33
+ </body>
34
+ </html>
@@ -0,0 +1,41 @@
1
+
2
+ <?xml version="1.0" encoding="iso-8859-1"?>
3
+ <!DOCTYPE html
4
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
+
7
+ <!--
8
+
9
+ Methods
10
+
11
+ -->
12
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
+ <head>
14
+ <title>Methods</title>
15
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
+ <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
+ <base target="docwin" />
18
+ </head>
19
+ <body>
20
+ <div id="index">
21
+ <h1 class="section-bar">Methods</h1>
22
+ <div id="index-entries">
23
+ <a href="classes/Bio/Graphics/Panel/Track.html#M000009">add_feature (Bio::Graphics::Panel::Track)</a><br />
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 />
26
+ <a href="classes/Bio/Graphics/Panel.html#M000007">draw (Bio::Graphics::Panel)</a><br />
27
+ <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 />
29
+ <a href="classes/Bio/Graphics/Panel/Track.html#M000008">new (Bio::Graphics::Panel::Track)</a><br />
30
+ <a href="classes/Bio/Graphics/Panel.html#M000005">new (Bio::Graphics::Panel)</a><br />
31
+ <a href="classes/ImageMap.html#M000001">new (ImageMap)</a><br />
32
+ <a href="classes/ImageMap/ImageMapElement.html#M000003">new (ImageMap::ImageMapElement)</a><br />
33
+ <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 />
36
+ <a href="classes/ImageMap.html#M000002">to_s (ImageMap)</a><br />
37
+ <a href="classes/ImageMap/ImageMapElement.html#M000004">to_s (ImageMap::ImageMapElement)</a><br />
38
+ </div>
39
+ </div>
40
+ </body>
41
+ </html>
Binary file
Binary file
@@ -0,0 +1,166 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://web.resource.org/cc/"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:xlink="http://www.w3.org/1999/xlink"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="1052.3622"
13
+ height="744.09448"
14
+ id="svg2"
15
+ sodipodi:version="0.32"
16
+ inkscape:version="0.45.1"
17
+ version="1.0"
18
+ sodipodi:docbase="/home/aertsj/Documents/Projects/20070924_RT3097_BioGraphics/images"
19
+ sodipodi:docname="terms.svg"
20
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
21
+ <defs
22
+ id="defs4">
23
+ <marker
24
+ inkscape:stockid="Arrow1Lend"
25
+ orient="auto"
26
+ refY="0.0"
27
+ refX="0.0"
28
+ id="Arrow1Lend"
29
+ style="overflow:visible;">
30
+ <path
31
+ id="path6115"
32
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
33
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
34
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
35
+ </marker>
36
+ </defs>
37
+ <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
+ inkscape:window-height="750"
56
+ 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>
166
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
5
+
6
+ <!--
7
+
8
+ RDoc Documentation
9
+
10
+ -->
11
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
12
+ <head>
13
+ <title>RDoc Documentation</title>
14
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
15
+ </head>
16
+ <frameset rows="20%, 80%">
17
+ <frameset cols="25%,35%,45%">
18
+ <frame src="fr_file_index.html" title="Files" name="Files" />
19
+ <frame src="fr_class_index.html" name="Classes" />
20
+ <frame src="fr_method_index.html" name="Methods" />
21
+ </frameset>
22
+ <frame src="files/TUTORIAL.html" name="docwin" />
23
+ </frameset>
24
+ </html>
Binary file
Binary file
Binary file
@@ -0,0 +1,166 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://web.resource.org/cc/"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:xlink="http://www.w3.org/1999/xlink"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="1052.3622"
13
+ height="744.09448"
14
+ id="svg2"
15
+ sodipodi:version="0.32"
16
+ inkscape:version="0.45.1"
17
+ version="1.0"
18
+ sodipodi:docbase="/home/aertsj/Documents/Projects/20070924_RT3097_BioGraphics/images"
19
+ sodipodi:docname="terms.svg"
20
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
21
+ <defs
22
+ id="defs4">
23
+ <marker
24
+ inkscape:stockid="Arrow1Lend"
25
+ orient="auto"
26
+ refY="0.0"
27
+ refX="0.0"
28
+ id="Arrow1Lend"
29
+ style="overflow:visible;">
30
+ <path
31
+ id="path6115"
32
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
33
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
34
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
35
+ </marker>
36
+ </defs>
37
+ <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
+ inkscape:window-height="750"
56
+ 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>
166
+ </svg>