workflow-to-galaxy 0.2.9 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGES CHANGED
@@ -1,5 +1,10 @@
1
1
  = Changes log for the Taverna-Galaxy Gem
2
2
 
3
+ == Version 0.3.0
4
+ * Updated to newer myexperiment-rest lib (0.3.0).
5
+ * Restructured, now more modular and extensible.
6
+
7
+
3
8
  == Version 0.2.9
4
9
  * Fixed minor bug when workflow had empty description
5
10
  * Added instructions to generated scripts on how to run them without Galaxy.
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  Authors:: Konstantinos Karasavvas
5
- Gem Version:: 0.2.9
5
+ Gem Version:: 0.3.0
6
6
  Contact:: mailto:kostas.karasavvas@nbic.nl
7
7
  Licence:: MIT (See LICENCE or http://www.opensource.org/licenses/mit-license)
8
8
  Copyright:: (c) 2010 Netherlands Bioinformatics Centre, The Netherlands
data/Rakefile CHANGED
@@ -1,8 +1,3 @@
1
- #
2
- # To change this template, choose Tools | Templates
3
- # and open the template in the editor.
4
-
5
-
6
1
  require 'rubygems'
7
2
  require 'rake'
8
3
  require 'rake/clean'
@@ -12,7 +7,7 @@ require 'rdoc/task'
12
7
 
13
8
  spec = Gem::Specification.new do |s|
14
9
  s.name = 'workflow-to-galaxy'
15
- s.version = '0.2.9'
10
+ s.version = '0.3.0'
16
11
  s.extra_rdoc_files = ['README', 'LICENSE', 'CHANGES']
17
12
  s.summary = 'This script acquires information for a taverna 2 workflow from myExperiment (or from a file) and generates a Galaxy tool (.xml and .rb files).'
18
13
  s.description = s.summary
@@ -22,10 +17,10 @@ spec = Gem::Specification.new do |s|
22
17
  s.files = %w(LICENSE README CHANGES Rakefile) + Dir.glob("{bin,lib,doc,spec}/**/*")
23
18
  s.require_path = "lib"
24
19
  s.bindir = "bin"
25
- s.add_dependency 'myexperiment-rest', '>= 0.2.6'
26
- s.add_dependency 'taverna-t2flow', '>= 0.2.0'
27
- s.add_dependency 't2-server', '>= 0.5.3'
28
- s.add_dependency 'rubyzip', '>= 0.9.4'
20
+ s.add_dependency 'myexperiment-rest', '~> 0.3.0'
21
+ s.add_dependency 'taverna-t2flow', '~> 0.2.0'
22
+ s.add_dependency 't2-server', '~> 0.6.1'
23
+ s.add_dependency 'rubyzip', '~> 0.9.4'
29
24
  end
30
25
 
31
26
  Gem::PackageTask.new(spec) do |p|
@@ -2,40 +2,10 @@
2
2
 
3
3
  require 'rubygems'
4
4
  require 'optparse'
5
- require 't2flow/model.rb'
6
- require 't2flow/parser.rb'
7
5
  require 'cgi'
8
- require 'myexperiment-rest'
9
6
  require 'workflow-to-galaxy'
10
7
 
11
- include MyExperimentREST
12
- include Generator
13
-
14
-
15
- # Populates and returns a _TavernaWorkflow_ object (same as in
16
- # myexperiment-rest) from a local t2flow file.
17
- def populate_taverna_workflow_from_t2flow(t2flow)
18
- t2flow_file = File.new(t2flow, "r")
19
- parsed_t2flow = T2Flow::Parser.new.parse(t2flow_file)
20
-
21
- wkf_title = parsed_t2flow.name
22
- wkf_descr = parsed_t2flow.main.annotations.descriptions[0] # gets only the first
23
- wkf_sources = []
24
- parsed_t2flow.main.sources.each do |s|
25
- wkf_sources << TavernaIOData.new(s.name,
26
- s.descriptions ? CGI.escapeHTML(s.descriptions.to_s) : [],
27
- s.example_values ? s.example_values : [])
28
- end
29
- wkf_sinks = []
30
- parsed_t2flow.main.sinks.each do |s|
31
- wkf_sinks << TavernaIOData.new(s.name,
32
- s.descriptions ? CGI.escapeHTML(s.descriptions.to_s) : [],
33
- s.example_values ? s.example_values : [])
34
- end
35
-
36
- workflow = TavernaWorkflow.new(TavernaWorkflow::T2_FLOW, t2flow, wkf_title, wkf_descr, wkf_sources, wkf_sinks)
37
-
38
- end
8
+ include WorkflowToGalaxy
39
9
 
40
10
 
41
11
  # Set up and parse arguments
@@ -43,21 +13,24 @@ out_file = ""
43
13
  t2_server = ""
44
14
  options = {}
45
15
  opts = OptionParser.new do |opt|
46
- opt.banner = "Usage: workflow_to_galaxy [options] <myExperiement-workflow> | <t2flow-file>"
16
+ opt.banner = "Usage: workflow_to_galaxy [options] <myExperiment-workflow> | <t2flow-file>"
47
17
  opt.separator ""
48
18
  opt.separator "Generates a Galaxy tool (a UI xml definition plus a script) for the "
49
- opt.separator "specified Taverna2 workflow, where <myExperiment-workflow> is "
50
- opt.separator "the full URL of the workflow in the myExperiment website. Alternatively "
51
- opt.separator "a t2flow file can be passed for workflows not in myExperiment. Available "
52
- opt.separator "options are:"
53
-
54
- opt.on("-o OUTPUT", "--output=OUTPUT", "The file name(s) of the generated tool. " +
55
- "If it is not specified then the workflow's name will be used.") do |val|
19
+ opt.separator "specified Taverna2 workflow, where <myExperiment-workflow> is the full "
20
+ opt.separator "URL of the workflow in the myExperiment website. Alternatively a t2flow "
21
+ opt.separator "file can be passed for workflows not in myExperiment. Available options "
22
+ opt.separator "are:"
23
+
24
+ opt.on("-o OUTPUT", "--output=OUTPUT", "The file name(s) of the generated tool.",
25
+ "If it is not specified then the",
26
+ "workflow's name will be used.") do |val|
56
27
  out_file = val if val != nil
57
28
  end
58
29
 
59
- opt.on("-s SERVER", "--server=SERVER", "The taverna server that the script will request execution from. " +
60
- "If it is not specified then 'http://localhost:8980/taverna-server' will be used.") do |val|
30
+ opt.on("-s SERVER", "--server=SERVER", "The taverna server that the script will",
31
+ "request execution from. If not specified",
32
+ "'http://localhost:8080/taverna-server'",
33
+ "will be used.") do |val|
61
34
  t2_server = val if val != nil
62
35
  end
63
36
 
@@ -75,36 +48,56 @@ if url == nil
75
48
  exit 1
76
49
  end
77
50
 
78
- # Object to store the workflow object
79
- wkf_data = nil
51
+ # Set taverna server if not specified
52
+ t2_server ||= "http://localhost:8080/taverna-server"
80
53
 
81
- if options[:t2flow]
82
- # Parse local t2flow file -- a _Taverna_Workflow_ object is returned
83
- wkf_data = populate_taverna_workflow_from_t2flow(url)
84
- else
85
- # Get workflow data from myexperiment -- a _Taverna_Workflow_ object is returned
86
- wkf_data = Workflows.new.read(url)
87
- end
88
54
 
89
- # Set output files
55
+ #if options[:t2flow]
56
+ # wkf_source =
57
+ #else
58
+ # wkf_source = Workflows::MYEXPERIMENT_TAVERNA2
59
+ #end
60
+
61
+ # create file handlers
90
62
  if out_file != ""
91
- xml_file = "#{out_file}.xml"
92
- script_file = "#{out_file}.rb"
93
- else
94
- xml_file = "#{wkf_data.title}".gsub(/\W/, '') + ".xml"
95
- script_file = "#{wkf_data.title}".gsub(/\W/, '') + ".rb"
63
+ xml_out = open("#{out_file}.xml", "w")
64
+ rb_out = open("#{out_file}.rb", "w")
96
65
  end
97
66
 
98
- # Set taverna server if not specified
99
- t2_server = "http://localhost:8980/taverna-server" if t2_server == ""
100
67
 
68
+ # create generator or wrapper (could have used url for t2flow key to avoid
69
+ # if/else but future sources would still need them)
70
+ if options[:t2flow]
71
+ if out_file != ""
72
+ wkf = GalaxyTool.new(:wkf_source => Workflows::T2FLOW,
73
+ :params => {:t2_server => t2_server,
74
+ :t2flow => url,
75
+ :xml_out => xml_out,
76
+ :rb_out => rb_out } )
77
+ else
78
+ wkf = GalaxyTool.new(:wkf_source => Workflows::T2FLOW,
79
+ :params => {:t2_server => t2_server,
80
+ :t2flow => url } )
81
+ end
82
+ else
83
+ if out_file != ""
84
+ wkf = GalaxyTool.new(:wkf_source => Workflows::MYEXPERIMENT_TAVERNA2,
85
+ :params => {:t2_server => t2_server,
86
+ :url => url,
87
+ :xml_out => xml_out,
88
+ :rb_out => rb_out } )
89
+ else
90
+ wkf = GalaxyTool.new(:wkf_source => Workflows::MYEXPERIMENT_TAVERNA2,
91
+ :params => {:t2_server => t2_server,
92
+ :url => url } )
93
+ end
94
+ end
101
95
 
96
+ # close file handlers
97
+ if out_file != ""
98
+ xml_out.close
99
+ rb_out.close
100
+ end
102
101
 
103
- # Generate Galaxy tool's files
104
- xml_file_ob = File.open(xml_file, "w")
105
- generate_xml(wkf_data, xml_file, xml_file_ob)
106
- xml_file_ob.close
102
+ wkf.generate
107
103
 
108
- script_file_ob = File.open(script_file, "w")
109
- generate_script(wkf_data, t2_server, script_file_ob)
110
- script_file_ob.close
@@ -64,11 +64,11 @@
64
64
 
65
65
  <ul class="link-list">
66
66
 
67
- <li><a href="./Generator.html">Generator</a></li>
67
+ <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
68
68
 
69
- <li><a href="./Object.html">Object</a></li>
69
+ <li><a href="./WorkflowToGalaxy/GalaxyTool.html">WorkflowToGalaxy::GalaxyTool</a></li>
70
70
 
71
- <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
71
+ <li><a href="./WorkflowToGalaxy/Workflows.html">WorkflowToGalaxy::Workflows</a></li>
72
72
 
73
73
  </ul>
74
74
  <div id="no-class-search-results" style="display: none;">No matching classes.</div>
@@ -82,6 +82,13 @@
82
82
 
83
83
  <h1>Changes log for the Taverna-Galaxy Gem</h1>
84
84
 
85
+ <h2>Version 0.3.0</h2>
86
+ <ul><li>
87
+ <p>Updated to newer myexperiment-rest lib (0.3.0).</p>
88
+ </li><li>
89
+ <p>Restructured, now more modular and extensible.</p>
90
+ </li></ul>
91
+
85
92
  <h2>Version 0.2.9</h2>
86
93
  <ul><li>
87
94
  <p>Fixed minor bug when workflow had empty description</p>
@@ -34,9 +34,6 @@
34
34
  <div class="section-body">
35
35
  <ul>
36
36
 
37
- <li><a href="./lib/generator_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
- class="thickbox" title="lib/generator.rb">lib/generator.rb</a></li>
39
-
40
37
  <li><a href="./lib/workflow-to-galaxy/generator_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
41
38
  class="thickbox" title="lib/workflow-to-galaxy/generator.rb">lib/workflow-to-galaxy/generator.rb</a></li>
42
39
 
@@ -105,8 +102,6 @@
105
102
 
106
103
  <li><a href="./Generator.html">Generator</a></li>
107
104
 
108
- <li><a href="./Object.html">Object</a></li>
109
-
110
105
  <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
111
106
 
112
107
  </ul>
@@ -122,9 +117,6 @@
122
117
 
123
118
  <div id="description" class="description">
124
119
 
125
- <p>Contains code to generate the Galaxy’s tool xml and script files</p>
126
- <hr style="height: 1px">
127
-
128
120
  <p>The <a href="Generator.html">Generator</a> module contains two public
129
121
  methods that generate a Galaxy’s tool XML and script files</p>
130
122
 
@@ -137,19 +129,6 @@ methods that generate a Galaxy’s tool XML and script files</p>
137
129
 
138
130
 
139
131
 
140
- <!-- Constants -->
141
- <div id="constants-list" class="section">
142
- <h3 class="section-header">Constants</h3>
143
- <dl>
144
-
145
- <dt><a name="INDENT">INDENT</a></dt>
146
-
147
- <dd class="description"></dd>
148
-
149
-
150
- </dl>
151
- </div>
152
-
153
132
 
154
133
 
155
134
 
@@ -163,33 +142,45 @@ methods that generate a Galaxy’s tool XML and script files</p>
163
142
  <a name="method-i-generate_script"></a>
164
143
 
165
144
 
145
+
166
146
  <div class="method-heading">
167
- <span class="method-name">generate_script</span><span
168
- class="method-args">(me_rest, t2_server, script_file)</span>
147
+ <span class="method-callseq">generate_script(my_exp_rest, t2_server, script_file) &rarr; nil</span>
148
+
169
149
  <span class="method-click-advice">click to toggle source</span>
150
+
170
151
  </div>
171
152
 
153
+
172
154
 
173
155
  <div class="method-description">
174
156
 
175
157
  <p>Generates the Galaxy tool’s script file responsible for talking to the
176
158
  taverna server</p>
159
+ <dl class="rdoc-list"><dt><tt>my_exp_rest</tt></dt>
160
+ <dd>
161
+ <p>a <em>Workflow</em> object as returned from
162
+ <em>MyExperimentREST.ReadWorkflow.new(url)</em></p>
163
+ </dd><dt><tt>t2_server</tt></dt>
164
+ <dd>
165
+ <p>a string containing the URL of the taverna 2 server</p>
166
+ </dd><dt><tt>script_out</tt></dt>
167
+ <dd>
168
+ <p>the file handler to write the generated script code</p>
169
+ </dd></dl>
177
170
 
178
171
 
179
172
 
180
173
  <div class="method-source-code" id="generate_script-source">
181
174
  <pre>
182
- <span class="ruby-comment"># File lib/generator.rb, line 253</span>
183
- <span class="ruby-keyword">def</span> <span class="ruby-identifier">generate_script</span>(<span class="ruby-identifier">me_rest</span>, <span class="ruby-identifier">t2_server</span>, <span class="ruby-identifier">script_file</span>)
184
- <span class="ruby-identifier">out</span> = <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">script_file</span>, <span class="ruby-string">&quot;w&quot;</span>)
185
- <span class="ruby-identifier">script_preample</span>(<span class="ruby-identifier">out</span>)
186
- <span class="ruby-identifier">script_util_methods</span>(<span class="ruby-identifier">out</span>)
187
- <span class="ruby-identifier">script_create_t2_run</span>(<span class="ruby-identifier">out</span>, <span class="ruby-identifier">me_rest</span>.<span class="ruby-identifier">uri</span>, <span class="ruby-identifier">t2_server</span>)
188
- <span class="ruby-identifier">script_init_inputs</span>(<span class="ruby-identifier">out</span>, <span class="ruby-identifier">me_rest</span>)
189
- <span class="ruby-identifier">script_start_run</span>(<span class="ruby-identifier">out</span>)
190
- <span class="ruby-identifier">script_get_outputs</span>(<span class="ruby-identifier">out</span>, <span class="ruby-identifier">me_rest</span>)
191
- <span class="ruby-identifier">script_finish_run</span>(<span class="ruby-identifier">out</span>)
192
- <span class="ruby-identifier">out</span>.<span class="ruby-identifier">close</span>
175
+ <span class="ruby-comment"># File lib/workflow-to-galaxy/generator.rb, line 501</span>
176
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">generate_script</span>(<span class="ruby-identifier">t2_workflow</span>, <span class="ruby-identifier">t2_server</span>, <span class="ruby-identifier">script_out</span>)
177
+ <span class="ruby-identifier">script_preample</span>(<span class="ruby-identifier">script_out</span>)
178
+ <span class="ruby-identifier">script_util_methods</span>(<span class="ruby-identifier">script_out</span>)
179
+ <span class="ruby-identifier">script_create_t2_run</span>(<span class="ruby-identifier">script_out</span>, <span class="ruby-identifier">t2_workflow</span>, <span class="ruby-identifier">t2_server</span>)
180
+ <span class="ruby-identifier">script_init_inputs</span>(<span class="ruby-identifier">script_out</span>, <span class="ruby-identifier">t2_workflow</span>)
181
+ <span class="ruby-identifier">script_start_run</span>(<span class="ruby-identifier">script_out</span>)
182
+ <span class="ruby-identifier">script_get_outputs</span>(<span class="ruby-identifier">script_out</span>, <span class="ruby-identifier">t2_workflow</span>)
183
+ <span class="ruby-identifier">script_finish_run</span>(<span class="ruby-identifier">script_out</span>)
193
184
  <span class="ruby-keyword">end</span></pre>
194
185
  </div><!-- generate_script-source -->
195
186
 
@@ -205,31 +196,43 @@ taverna server</p>
205
196
  <a name="method-i-generate_xml"></a>
206
197
 
207
198
 
199
+
208
200
  <div class="method-heading">
209
- <span class="method-name">generate_xml</span><span
210
- class="method-args">(me_rest, xml_file)</span>
201
+ <span class="method-callseq">generate_xml(my_exp_rest, xml_file) &rarr; nil</span>
202
+
211
203
  <span class="method-click-advice">click to toggle source</span>
204
+
212
205
  </div>
213
206
 
207
+
214
208
 
215
209
  <div class="method-description">
216
210
 
217
211
  <p>Generates the Galaxy tool’s xml file responsible for the UI.</p>
212
+ <dl class="rdoc-list"><dt><tt>t2_workflow</tt></dt>
213
+ <dd>
214
+ <p>a <em>Workflow</em> object as returned from
215
+ <em>MyExperimentREST::Workflows.new.read(url)</em></p>
216
+ </dd><dt><tt>xml_file</tt></dt>
217
+ <dd>
218
+ <p>a string containing the name of the generated XML file</p>
219
+ </dd><dt><tt>xml_out</tt></dt>
220
+ <dd>
221
+ <p>the file handler to write the generated XML tags</p>
222
+ </dd></dl>
218
223
 
219
224
 
220
225
 
221
226
  <div class="method-source-code" id="generate_xml-source">
222
227
  <pre>
223
- <span class="ruby-comment"># File lib/generator.rb, line 238</span>
224
- <span class="ruby-keyword">def</span> <span class="ruby-identifier">generate_xml</span>(<span class="ruby-identifier">me_rest</span>, <span class="ruby-identifier">xml_file</span>)
225
- <span class="ruby-identifier">out</span> = <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">xml_file</span>, <span class="ruby-string">&quot;w&quot;</span>)
226
- <span class="ruby-identifier">tool_b</span>(<span class="ruby-identifier">out</span>, <span class="ruby-identifier">me_rest</span>.<span class="ruby-identifier">workflow</span>.<span class="ruby-identifier">title</span>)
227
- <span class="ruby-identifier">command_be</span>(<span class="ruby-identifier">out</span>, <span class="ruby-identifier">me_rest</span>, <span class="ruby-identifier">xml_file</span>.<span class="ruby-identifier">gsub</span>(<span class="ruby-string">'.xml'</span>, <span class="ruby-string">'.rb'</span>))
228
- <span class="ruby-identifier">inputs_be</span>(<span class="ruby-identifier">out</span>, <span class="ruby-identifier">me_rest</span>.<span class="ruby-identifier">workflow</span>.<span class="ruby-identifier">inputs</span>)
229
- <span class="ruby-identifier">outputs_be</span>(<span class="ruby-identifier">out</span>, <span class="ruby-identifier">me_rest</span>.<span class="ruby-identifier">workflow</span>.<span class="ruby-identifier">outputs</span>)
230
- <span class="ruby-identifier">help_be</span>(<span class="ruby-identifier">out</span>, <span class="ruby-identifier">me_rest</span>)
231
- <span class="ruby-identifier">tool_e</span>(<span class="ruby-identifier">out</span>)
232
- <span class="ruby-identifier">out</span>.<span class="ruby-identifier">close</span>
228
+ <span class="ruby-comment"># File lib/workflow-to-galaxy/generator.rb, line 482</span>
229
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">generate_xml</span>(<span class="ruby-identifier">t2_workflow</span>, <span class="ruby-identifier">xml_file</span>, <span class="ruby-identifier">xml_out</span>)
230
+ <span class="ruby-identifier">tool_begin_tag</span>(<span class="ruby-identifier">xml_out</span>, <span class="ruby-identifier">t2_workflow</span>.<span class="ruby-identifier">title</span>)
231
+ <span class="ruby-identifier">command_tag</span>(<span class="ruby-identifier">xml_out</span>, <span class="ruby-identifier">t2_workflow</span>, <span class="ruby-identifier">xml_file</span>.<span class="ruby-identifier">gsub</span>(<span class="ruby-string">'.xml'</span>, <span class="ruby-string">'.rb'</span>))
232
+ <span class="ruby-identifier">inputs_tag</span>(<span class="ruby-identifier">xml_out</span>, <span class="ruby-identifier">t2_workflow</span>.<span class="ruby-identifier">inputs</span>)
233
+ <span class="ruby-identifier">outputs_tag</span>(<span class="ruby-identifier">xml_out</span>, <span class="ruby-identifier">t2_workflow</span>.<span class="ruby-identifier">outputs</span>)
234
+ <span class="ruby-identifier">help_tag</span>(<span class="ruby-identifier">xml_out</span>, <span class="ruby-identifier">t2_workflow</span>)
235
+ <span class="ruby-identifier">tool_end_tag</span>(<span class="ruby-identifier">xml_out</span>)
233
236
  <span class="ruby-keyword">end</span></pre>
234
237
  </div><!-- generate_xml-source -->
235
238
 
@@ -64,11 +64,11 @@
64
64
 
65
65
  <ul class="link-list">
66
66
 
67
- <li><a href="./Generator.html">Generator</a></li>
67
+ <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
68
68
 
69
- <li><a href="./Object.html">Object</a></li>
69
+ <li><a href="./WorkflowToGalaxy/GalaxyTool.html">WorkflowToGalaxy::GalaxyTool</a></li>
70
70
 
71
- <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
71
+ <li><a href="./WorkflowToGalaxy/Workflows.html">WorkflowToGalaxy::Workflows</a></li>
72
72
 
73
73
  </ul>
74
74
  <div id="no-class-search-results" style="display: none;">No matching classes.</div>
data/doc/rdoc/README.html CHANGED
@@ -64,11 +64,11 @@
64
64
 
65
65
  <ul class="link-list">
66
66
 
67
- <li><a href="./Generator.html">Generator</a></li>
67
+ <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
68
68
 
69
- <li><a href="./Object.html">Object</a></li>
69
+ <li><a href="./WorkflowToGalaxy/GalaxyTool.html">WorkflowToGalaxy::GalaxyTool</a></li>
70
70
 
71
- <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
71
+ <li><a href="./WorkflowToGalaxy/Workflows.html">WorkflowToGalaxy::Workflows</a></li>
72
72
 
73
73
  </ul>
74
74
  <div id="no-class-search-results" style="display: none;">No matching classes.</div>
@@ -86,7 +86,7 @@
86
86
  <p>Konstantinos Karasavvas</p>
87
87
  </td></tr><tr><td class="rdoc-term"><p>Gem Version</p></td>
88
88
  <td>
89
- <p>0.2.9</p>
89
+ <p>0.3.0</p>
90
90
  </td></tr><tr><td class="rdoc-term"><p>Contact</p></td>
91
91
  <td>
92
92
  <p><a href="mailto:kostas.karasavvas@nbic.nl">kostas.karasavvas@nbic.nl</a></p>
@@ -34,6 +34,12 @@
34
34
  <div class="section-body">
35
35
  <ul>
36
36
 
37
+ <li><a href="./lib/workflow-to-galaxy/galaxy_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
+ class="thickbox" title="lib/workflow-to-galaxy/galaxy.rb">lib/workflow-to-galaxy/galaxy.rb</a></li>
39
+
40
+ <li><a href="./lib/workflow-to-galaxy/constants_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
41
+ class="thickbox" title="lib/workflow-to-galaxy/constants.rb">lib/workflow-to-galaxy/constants.rb</a></li>
42
+
37
43
  <li><a href="./lib/workflow-to-galaxy_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
44
  class="thickbox" title="lib/workflow-to-galaxy.rb">lib/workflow-to-galaxy.rb</a></li>
39
45
 
@@ -50,10 +56,34 @@
50
56
 
51
57
 
52
58
 
59
+ <!-- Namespace Contents -->
60
+ <div id="namespace-list-section" class="section">
61
+ <h3 class="section-header">Namespace</h3>
62
+ <ul class="link-list">
63
+
64
+ <li><span class="type">MODULE</span> <a href="WorkflowToGalaxy/Workflows.html">WorkflowToGalaxy::Workflows</a></li>
65
+
66
+ <li><span class="type">CLASS</span> <a href="WorkflowToGalaxy/GalaxyTool.html">WorkflowToGalaxy::GalaxyTool</a></li>
67
+
68
+ </ul>
69
+ </div>
70
+
53
71
 
54
72
 
55
73
 
56
74
 
75
+ <!-- Included Modules -->
76
+ <div id="includes-section" class="section">
77
+ <h3 class="section-header">Included Modules</h3>
78
+ <ul class="link-list">
79
+
80
+
81
+ <li><span class="include">MyExperimentREST</span></li>
82
+
83
+
84
+ </ul>
85
+ </div>
86
+
57
87
  </div>
58
88
 
59
89
  <div id="project-metadata">
@@ -88,11 +118,11 @@
88
118
 
89
119
  <ul class="link-list">
90
120
 
91
- <li><a href="./Generator.html">Generator</a></li>
121
+ <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
92
122
 
93
- <li><a href="./Object.html">Object</a></li>
123
+ <li><a href="./WorkflowToGalaxy/GalaxyTool.html">WorkflowToGalaxy::GalaxyTool</a></li>
94
124
 
95
- <li><a href="./WorkflowToGalaxy.html">WorkflowToGalaxy</a></li>
125
+ <li><a href="./WorkflowToGalaxy/Workflows.html">WorkflowToGalaxy::Workflows</a></li>
96
126
 
97
127
  </ul>
98
128
  <div id="no-class-search-results" style="display: none;">No matching classes.</div>