annotate fubar-galaxytoolfactory-ca7db160878a/rgToolFactory.py @ 5:a90a05c309d3 draft

Deleted selected files
author fubar
date Sun, 24 Feb 2013 17:10:19 -0500
parents 8c578211a681
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
1 # rgToolFactory.py
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
2 # see https://bitbucket.org/fubar/galaxytoolfactory/wiki/Home
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
3 #
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
4 # copyright ross lazarus (ross stop lazarus at gmail stop com) May 2012
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
5 #
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
6 # all rights reserved
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
7 # Licensed under the LGPL
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
8 # suggestions for improvement and bug fixes welcome at https://bitbucket.org/fubar/galaxytoolfactory/wiki/Home
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
9
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
10 # August 11 2012
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
11 # changed to use shell=False and cl as a sequence
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
12
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
13 # This is a Galaxy tool factory for simple scripts in python, R or whatever ails ye.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
14 # It also serves as the wrapper for the new tool.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
15 #
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
16 # you paste and run your script
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
17 # Only works for simple scripts that read one input from the history.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
18 # Optionally can write one new history dataset,
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
19 # and optionally collect any number of outputs into links on an autogenerated HTML page.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
20
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
21 # DO NOT install on a public or important site - please.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
22
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
23 # installed generated tools are fine if the script is safe.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
24 # They just run normally and their user cannot do anything unusually insecure
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
25 # but please, practice safe toolshed.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
26 # Read the fucking code before you install any tool
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
27 # especially this one
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
28
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
29 # After you get the script working on some test data, you can
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
30 # optionally generate a toolshed compatible gzip file
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
31 # containing your script safely wrapped as an ordinary Galaxy script in your local toolshed for
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
32 # safe and largely automated installation in a production Galaxy.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
33
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
34 # If you opt for an HTML output, you get all the script outputs arranged
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
35 # as a single Html history item - all output files are linked, thumbnails for all the pdfs.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
36 # Ugly but really inexpensive.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
37 #
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
38 # Patches appreciated please.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
39 #
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
40 #
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
41 # long route to June 2012 product
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
42 # Behold the awesome power of Galaxy and the toolshed with the tool factory binds to bind them
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
43 # derived from an integrated script model
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
44 # called rgBaseScriptWrapper.py
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
45 # Note to the unwary:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
46 # This tool allows arbitrary scripting on your Galaxy as the Galaxy user
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
47 # There is nothing stopping a malicious user doing whatever they choose
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
48 # Extremely dangerous!!
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
49 # Totally insecure. So, trusted users only
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
50 #
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
51 # preferred model is a developer using their throw away workstation instance - ie a private site.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
52 # no real risk. The universe_wsgi.ini admin_users string is checked - only admin users are permitted to run this tool.
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
53 #
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
54
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
55 import sys
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
56 import shutil
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
57 import subprocess
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
58 import os
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
59 import time
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
60 import tempfile
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
61 import optparse
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
62 import tarfile
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
63 import re
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
64 import shutil
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
65 import math
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
66
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
67 progname = os.path.split(sys.argv[0])[1]
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
68 myversion = 'V000.2 June 2012'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
69 verbose = False
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
70 debug = False
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
71 toolFactoryURL = 'https://bitbucket.org/fubar/galaxytoolfactory'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
72
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
73 def timenow():
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
74 """return current time as a string
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
75 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
76 return time.strftime('%d/%m/%Y %H:%M:%S', time.localtime(time.time()))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
77
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
78
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
79 class ScriptRunner:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
80 """class is a wrapper for an arbitrary script
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
81 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
82
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
83 def __init__(self,opts=None,treatbashSpecial=True):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
84 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
85 cleanup inputs, setup some outputs
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
86
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
87 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
88 self.treatbashSpecial = treatbashSpecial
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
89 if opts.output_dir: # simplify for the tool tarball
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
90 os.chdir(opts.output_dir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
91 self.thumbformat = 'jpg'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
92 self.opts = opts
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
93 self.toolname = re.sub('[^a-zA-Z0-9_]+', '', opts.tool_name) # a sanitizer now does this but..
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
94 self.toolid = self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
95 self.myname = sys.argv[0] # get our name because we write ourselves out as a tool later
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
96 self.pyfile = self.myname # crude but efficient - the cruft won't hurt much
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
97 self.xmlfile = '%s.xml' % self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
98 s = open(self.opts.script_path,'r').readlines()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
99 s = [x.rstrip() for x in s] # remove pesky dos line endings if needed
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
100 self.script = '\n'.join(s)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
101 fhandle,self.sfile = tempfile.mkstemp(prefix=self.toolname,suffix=".%s" % (opts.interpreter))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
102 tscript = open(self.sfile,'w') # use self.sfile as script source for Popen
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
103 tscript.write(self.script)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
104 tscript.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
105 self.indentedScript = ''.join([' %s' % x for x in s]) # for restructured text in help
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
106 if opts.output_dir: # may not want these complexities
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
107 self.tlog = os.path.join(opts.output_dir,"%s_runner.log" % self.toolname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
108 art = '%s.%s' % (self.toolname,opts.interpreter)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
109 artpath = os.path.join(self.opts.output_dir,art) # need full path
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
110 artifact = open(artpath,'w') # use self.sfile as script source for Popen
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
111 artifact.write(self.script)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
112 artifact.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
113 self.cl = []
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
114 self.html = []
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
115 a = self.cl.append
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
116 a(opts.interpreter)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
117 if self.treatbashSpecial and opts.interpreter in ['bash','sh']:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
118 a(self.sfile)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
119 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
120 a('-') # stdin
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
121 a(opts.input_tab)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
122 a(opts.output_tab)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
123 self.outFormats = 'tabular' # TODO make this an option at tool generation time
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
124 self.inputFormats = 'tabular' # TODO make this an option at tool generation time
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
125 self.test1Input = '%s_test1_input.xls' % self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
126 self.test1Output = '%s_test1_output.xls' % self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
127 self.test1HTML = '%s_test1_output.html' % self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
128
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
129 def makeXML(self):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
130 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
131 Create a Galaxy xml tool wrapper for the new script as a string to write out
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
132 fixme - use templating or something less fugly than this example of what we produce
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
133
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
134 <tool id="reverse" name="reverse" version="0.01">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
135 <description>a tabular file</description>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
136 <command interpreter="python">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
137 reverse.py --script_path "$runMe" --interpreter "python"
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
138 --tool_name "reverse" --input_tab "$input1" --output_tab "$tab_file"
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
139 </command>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
140 <inputs>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
141 <param name="input1" type="data" format="tabular" label="Select a suitable input file from your history"/><param name="job_name" type="text" label="Supply a name for the outputs to remind you what they contain" value="reverse"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
142
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
143 </inputs>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
144 <outputs>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
145 <data format="tabular" name="tab_file" label="${job_name}"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
146
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
147 </outputs>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
148 <help>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
149
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
150 **What it Does**
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
151
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
152 Reverse the columns in a tabular file
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
153
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
154 </help>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
155 <configfiles>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
156 <configfile name="runMe">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
157
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
158 # reverse order of columns in a tabular file
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
159 import sys
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
160 inp = sys.argv[1]
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
161 outp = sys.argv[2]
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
162 i = open(inp,'r')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
163 o = open(outp,'w')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
164 for row in i:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
165 rs = row.rstrip().split('\t')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
166 rs.reverse()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
167 o.write('\t'.join(rs))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
168 o.write('\n')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
169 i.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
170 o.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
171
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
172
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
173 </configfile>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
174 </configfiles>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
175 </tool>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
176
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
177 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
178 newXML="""<tool id="%(toolid)s" name="%(toolname)s" version="%(tool_version)s">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
179 %(tooldesc)s
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
180 %(command)s
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
181 <inputs>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
182 %(inputs)s
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
183 </inputs>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
184 <outputs>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
185 %(outputs)s
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
186 </outputs>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
187 <configfiles>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
188 <configfile name="runMe">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
189 %(script)s
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
190 </configfile>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
191 </configfiles>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
192 %(tooltests)s
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
193 <help>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
194 %(help)s
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
195 </help>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
196 </tool>""" # needs a dict with toolname, toolid, interpreter, scriptname, command, inputs as a multi line string ready to write, outputs ditto, help ditto
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
197
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
198 newCommand="""<command interpreter="python">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
199 %(toolname)s.py --script_path "$runMe" --interpreter "%(interpreter)s"
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
200 --tool_name "%(toolname)s" %(command_inputs)s %(command_outputs)s
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
201 </command>""" # may NOT be an input or htmlout
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
202 tooltestsTabOnly = """<tests><test>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
203 <param name="input1" value="%(test1Input)s" ftype="tabular"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
204 <param name="job_name" value="test1"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
205 <param name="runMe" value="$runMe"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
206 <output name="tab_file" file="%(test1Output)s" ftype="tabular"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
207 </test></tests>"""
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
208 tooltestsHTMLOnly = """<tests><test>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
209 <param name="input1" value="%(test1Input)s" ftype="tabular"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
210 <param name="job_name" value="test1"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
211 <param name="runMe" value="$runMe"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
212 <output name="html_file" file="%(test1HTML)s" ftype="html" lines_diff="5"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
213 </test></tests>"""
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
214 tooltestsBoth = """<tests><test>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
215 <param name="input1" value="%(test1Input)s" ftype="tabular"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
216 <param name="job_name" value="test1"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
217 <param name="runMe" value="$runMe"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
218 <output name="tab_file" file="%(test1Output)s" ftype="tabular" />
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
219 <output name="html_file" file="%(test1HTML)s" ftype="html" lines_diff="10"/>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
220 </test></tests>"""
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
221 xdict = {}
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
222 xdict['tool_version'] = self.opts.tool_version
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
223 xdict['test1Input'] = self.test1Input
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
224 xdict['test1HTML'] = self.test1HTML
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
225 xdict['test1Output'] = self.test1Output
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
226 if self.opts.make_HTML and self.opts.output_tab <> 'None':
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
227 xdict['tooltests'] = tooltestsBoth % xdict
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
228 elif self.opts.make_HTML:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
229 xdict['tooltests'] = tooltestsHTMLOnly % xdict
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
230 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
231 xdict['tooltests'] = tooltestsTabOnly % xdict
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
232 xdict['script'] = self.script # configfile is least painful way to embed script to avoid external dependencies
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
233 if self.opts.help_text:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
234 xdict['help'] = open(self.opts.help_text,'r').read()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
235 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
236 xdict['help'] = 'Please ask the tool author for help as none was supplied at tool generation'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
237 coda = ['**Script**','Pressing execute will run the following code over your input file and generate some outputs in your history::']
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
238 coda.append(self.indentedScript)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
239 coda.append('**Attribution** This Galaxy tool was created by %s at %s\nusing the Galaxy Tool Factory.' % (self.opts.user_email,timenow()))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
240 coda.append('See %s for details of that project' % (toolFactoryURL))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
241 xdict['help'] = '%s\n%s' % (xdict['help'],'\n'.join(coda))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
242 if self.opts.tool_desc:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
243 xdict['tooldesc'] = '<description>%s</description>' % self.opts.tool_desc
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
244 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
245 xdict['tooldesc'] = ''
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
246 xdict['command_outputs'] = ''
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
247 xdict['outputs'] = ''
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
248 if self.opts.input_tab <> 'None':
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
249 xdict['command_inputs'] = '--input_tab "$input1" ' # the space may matter a lot if we append something
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
250 xdict['inputs'] = '<param name="input1" type="data" format="%s" label="Select a suitable input file from your history"/> \n' % self.inputFormats
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
251 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
252 xdict['command_inputs'] = '' # assume no input - eg a random data generator
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
253 xdict['inputs'] = ''
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
254 xdict['inputs'] += '<param name="job_name" type="text" label="Supply a name for the outputs to remind you what they contain" value="%s"/> \n' % self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
255 xdict['toolname'] = self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
256 xdict['toolid'] = self.toolid
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
257 xdict['interpreter'] = self.opts.interpreter
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
258 xdict['scriptname'] = self.sfile
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
259 if self.opts.make_HTML:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
260 xdict['command_outputs'] += ' --output_dir "$html_file.files_path" --output_html "$html_file" --make_HTML "yes" '
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
261 xdict['outputs'] += ' <data format="html" name="html_file" label="${job_name}.html"/>\n'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
262 if self.opts.output_tab <> 'None':
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
263 xdict['command_outputs'] += ' --output_tab "$tab_file"'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
264 xdict['outputs'] += ' <data format="%s" name="tab_file" label="${job_name}"/>\n' % self.outFormats
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
265 xdict['command'] = newCommand % xdict
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
266 xmls = newXML % xdict
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
267 xf = open(self.xmlfile,'w')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
268 xf.write(xmls)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
269 xf.write('\n')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
270 xf.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
271 # ready for the tarball
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
272
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
273
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
274 def makeTooltar(self):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
275 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
276 a tool is a gz tarball with eg
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
277 /toolname/tool.xml /toolname/tool.py /toolname/test-data/test1_in.foo ...
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
278 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
279 retval = self.run()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
280 if retval:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
281 print >> sys.stderr,'## Run failed. Cannot build yet. Please fix and retry'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
282 sys.exit(1)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
283 self.makeXML()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
284 tdir = self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
285 os.mkdir(tdir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
286 if self.opts.input_tab <> 'None': # no reproducible test otherwise? TODO: maybe..
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
287 testdir = os.path.join(tdir,'test-data')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
288 os.mkdir(testdir) # make tests directory
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
289 shutil.copyfile(self.opts.input_tab,os.path.join(testdir,self.test1Input))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
290 if self.opts.output_tab <> 'None':
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
291 shutil.copyfile(self.opts.output_tab,os.path.join(testdir,self.test1Output))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
292 if self.opts.make_HTML:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
293 shutil.copyfile(self.opts.output_html,os.path.join(testdir,self.test1HTML))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
294 if self.opts.output_dir:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
295 shutil.copyfile(self.tlog,os.path.join(testdir,'test1_out.log'))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
296 op = '%s.py' % self.toolname # new name
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
297 outpiname = os.path.join(tdir,op) # path for the tool tarball
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
298 pyin = os.path.basename(self.pyfile) # our name - we rewrite ourselves (TM)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
299 notes = ['# %s - a self annotated version of %s generated by running %s\n' % (op,pyin,pyin),]
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
300 notes.append('# to make a new Galaxy tool called %s\n' % self.toolname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
301 notes.append('# User %s at %s\n' % (self.opts.user_email,timenow()))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
302 pi = open(self.pyfile,'r').readlines() # our code becomes new tool wrapper (!) - first Galaxy worm
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
303 notes += pi
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
304 outpi = open(outpiname,'w')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
305 outpi.write(''.join(notes))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
306 outpi.write('\n')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
307 outpi.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
308 stname = os.path.join(tdir,self.sfile)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
309 if not os.path.exists(stname):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
310 shutil.copyfile(self.sfile, stname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
311 xtname = os.path.join(tdir,self.xmlfile)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
312 if not os.path.exists(xtname):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
313 shutil.copyfile(self.xmlfile,xtname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
314 tarpath = "%s.gz" % self.toolname
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
315 tar = tarfile.open(tarpath, "w:gz")
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
316 tar.add(tdir,arcname=self.toolname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
317 tar.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
318 shutil.copyfile(tarpath,self.opts.new_tool)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
319 shutil.rmtree(tdir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
320 ## TODO: replace with optional direct upload to local toolshed?
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
321 return retval
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
322
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
323 def compressPDF(self,inpdf=None,thumbformat='png'):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
324 """need absolute path to pdf
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
325 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
326 assert os.path.isfile(inpdf), "## Input %s supplied to %s compressPDF not found" % (inpdf,self.myName)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
327 hf,hlog = tempfile.mkstemp(suffix="%s.log" % self.toolname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
328 sto = open(hlog,'w')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
329 outpdf = '%s_compressed' % inpdf
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
330 cl = ["gs", "-sDEVICE=pdfwrite", "-dNOPAUSE", "-dBATCH", "-sOutputFile=%s" % outpdf,inpdf]
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
331 x = subprocess.Popen(cl,stdout=sto,stderr=sto,cwd=self.opts.output_dir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
332 retval1 = x.wait()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
333 if retval1 == 0:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
334 os.unlink(inpdf)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
335 shutil.move(outpdf,inpdf)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
336 outpng = '%s.%s' % (os.path.splitext(inpdf)[0],thumbformat)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
337 cl2 = ['convert', inpdf, outpng]
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
338 x = subprocess.Popen(cl2,stdout=sto,stderr=sto,cwd=self.opts.output_dir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
339 retval2 = x.wait()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
340 sto.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
341 retval = retval1 or retval2
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
342 return retval
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
343
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
344
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
345 def getfSize(self,fpath,outpath):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
346 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
347 format a nice file size string
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
348 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
349 size = ''
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
350 fp = os.path.join(outpath,fpath)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
351 if os.path.isfile(fp):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
352 size = '0 B'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
353 n = float(os.path.getsize(fp))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
354 if n > 2**20:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
355 size = '%1.1f MB' % (n/2**20)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
356 elif n > 2**10:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
357 size = '%1.1f KB)' % (n/2**10)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
358 elif n > 0:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
359 size = '%d B' % (int(n))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
360 return size
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
361
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
362 def makeHtml(self):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
363 """ Create an HTML file content to list all the artifacts found in the output_dir
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
364 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
365
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
366 galhtmlprefix = """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
367 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
368 <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
369 <meta name="generator" content="Galaxy %s tool output - see http://g2.trac.bx.psu.edu/" />
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
370 <title></title>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
371 <link rel="stylesheet" href="/static/style/base.css" type="text/css" />
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
372 </head>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
373 <body>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
374 <div class="toolFormBody">
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
375 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
376 galhtmlattr = """<hr/><div class="infomessage">This tool (%s) was generated by the <a href="https://bitbucket.org/fubar/galaxytoolfactory/overview">Galaxy Tool Factory</a></div><br/>"""
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
377 galhtmlpostfix = """</div></body></html>\n"""
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
378
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
379 flist = os.listdir(self.opts.output_dir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
380 flist = [x for x in flist if x <> 'Rplots.pdf']
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
381 flist.sort()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
382 html = []
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
383 html.append(galhtmlprefix % progname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
384 html.append('<div class="infomessage">Galaxy Tool "%s" run at %s</div><br/>' % (self.toolname,timenow()))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
385 fhtml = []
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
386 if len(flist) > 0:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
387 pdflist = []
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
388 npdf = len([x for x in flist if os.path.splitext(x)[-1].lower() == '.pdf'])
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
389 nacross = 1
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
390 if npdf > 0:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
391 nacross = int(round(math.log(npdf,2)))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
392 nacross = max(1,nacross)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
393 width = min(400,int(1200/nacross))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
394 for rownum,fname in enumerate(flist):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
395 dname,e = os.path.splitext(fname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
396 sfsize = self.getfSize(fname,self.opts.output_dir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
397 if e.lower() == '.pdf' : # compress and make a thumbnail
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
398 thumb = '%s.%s' % (dname,self.thumbformat)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
399 pdff = os.path.join(self.opts.output_dir,fname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
400 retval = self.compressPDF(inpdf=pdff,thumbformat=self.thumbformat)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
401 if retval == 0:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
402 pdflist.append((fname,thumb))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
403 if (rownum+1) % 2 == 0:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
404 fhtml.append('<tr class="odd_row"><td><a href="%s">%s</a></td><td>%s</td></tr>' % (fname,fname,sfsize))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
405 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
406 fhtml.append('<tr><td><a href="%s">%s</a></td><td>%s</td></tr>' % (fname,fname,sfsize))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
407 ntogo = nacross # counter for table row padding with empty cells
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
408 if len(pdflist) > 0:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
409 html.append('<div><table class="simple" cellpadding="2" cellspacing="2">\n<tr>')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
410 for i,paths in enumerate(pdflist):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
411 fname,thumb = paths
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
412 s= """<td><a href="%s"><img src="%s" title="Click to download a PDF of %s" hspace="5" width="%d"
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
413 alt="Image called %s"/></a></td>\n""" % (fname,thumb,fname,width,fname)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
414 if ((i+1) % nacross == 0):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
415 s += '</tr>\n'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
416 ntogo = 0
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
417 if i < (npdf - 1): # more to come
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
418 s += '<tr>'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
419 ntogo = nacross
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
420 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
421 ntogo -= 1
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
422 html.append(s)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
423 if html[-1].strip().endswith('</tr>'):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
424 html.append('</table></div>\n')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
425 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
426 if ntogo > 0: # pad
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
427 html.append('<td>&nbsp;</td>'*ntogo)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
428 html.append('</tr></table></div>\n')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
429 if len(fhtml) > 0:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
430 fhtml.insert(0,'<div><table class="colored" cellpadding="3" cellspacing="3"><tr><th>Output File Name (click to view)</th><th>Size</th></tr>\n')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
431 fhtml.append('</table></div><br/>')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
432 html += fhtml # add all non-pdf files to the end of the display
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
433 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
434 html.append('<div class="warningmessagelarge">### Error - %s returned no files - please confirm that parameters are sane</div>' % self.opts.interpreter)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
435 rlog = open(self.tlog,'r').readlines()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
436 rlog = [x for x in rlog if x.strip() > '']
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
437 if len(rlog) > 1:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
438 html.append('<div class="toolFormTitle">%s log</div><pre>\n' % self.opts.interpreter)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
439 html += rlog
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
440 html.append('</pre>\n')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
441 html.append(galhtmlattr % (self.toolname))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
442 html.append(galhtmlpostfix)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
443 htmlf = file(self.opts.output_html,'w')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
444 htmlf.write('\n'.join(html))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
445 htmlf.write('\n')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
446 htmlf.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
447 self.html = html
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
448
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
449
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
450 def run(self):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
451 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
452 scripts must be small enough not to fill the pipe!
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
453 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
454 if self.treatbashSpecial and self.opts.interpreter in ['bash','sh']:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
455 retval = self.runBash()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
456 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
457 if self.opts.output_dir:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
458 sto = open(self.tlog,'w')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
459 sto.write('## Toolfactory generated command line = %s\n' % ' '.join(self.cl))
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
460 sto.flush()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
461 p = subprocess.Popen(self.cl,shell=False,stdout=sto,stderr=sto,stdin=subprocess.PIPE,cwd=self.opts.output_dir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
462 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
463 p = subprocess.Popen(self.cl,shell=False,stdin=subprocess.PIPE)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
464 p.stdin.write(self.script)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
465 p.stdin.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
466 retval = p.wait()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
467 if self.opts.output_dir:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
468 sto.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
469 if self.opts.make_HTML:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
470 self.makeHtml()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
471 return retval
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
472
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
473 def runBash(self):
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
474 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
475 cannot use - for bash so use self.sfile
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
476 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
477 if self.opts.output_dir:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
478 s = '## Toolfactory generated command line = %s\n' % ' '.join(self.cl)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
479 sto = open(self.tlog,'w')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
480 sto.write(s)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
481 sto.flush()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
482 p = subprocess.Popen(self.cl,shell=False,stdout=sto,stderr=sto,cwd=self.opts.output_dir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
483 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
484 p = subprocess.Popen(self.cl,shell=False)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
485 retval = p.wait()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
486 if self.opts.output_dir:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
487 sto.close()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
488 if self.opts.make_HTML:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
489 self.makeHtml()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
490 return retval
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
491
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
492
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
493 def main():
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
494 u = """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
495 This is a Galaxy wrapper. It expects to be called by a special purpose tool.xml as:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
496 <command interpreter="python">rgBaseScriptWrapper.py --script_path "$scriptPath" --tool_name "foo" --interpreter "Rscript"
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
497 </command>
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
498 """
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
499 op = optparse.OptionParser()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
500 a = op.add_option
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
501 a('--script_path',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
502 a('--tool_name',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
503 a('--interpreter',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
504 a('--output_dir',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
505 a('--output_html',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
506 a('--input_tab',default="None")
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
507 a('--output_tab',default="None")
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
508 a('--user_email',default='Unknown')
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
509 a('--bad_user',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
510 a('--make_Tool',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
511 a('--make_HTML',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
512 a('--help_text',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
513 a('--tool_desc',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
514 a('--new_tool',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
515 a('--tool_version',default=None)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
516 opts, args = op.parse_args()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
517 assert not opts.bad_user,'UNAUTHORISED: %s is NOT authorized to use this tool until Galaxy admin adds %s to admin_users in universe_wsgi.ini' % (opts.bad_user,opts.bad_user)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
518 assert opts.tool_name,'## Tool Factory expects a tool name - eg --tool_name=DESeq'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
519 assert opts.interpreter,'## Tool Factory wrapper expects an interpreter - eg --interpreter=Rscript'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
520 assert os.path.isfile(opts.script_path),'## Tool Factory wrapper expects a script path - eg --script_path=foo.R'
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
521 if opts.output_dir:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
522 try:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
523 os.makedirs(opts.output_dir)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
524 except:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
525 pass
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
526 r = ScriptRunner(opts)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
527 if opts.make_Tool:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
528 retcode = r.makeTooltar()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
529 else:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
530 retcode = r.run()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
531 os.unlink(r.sfile)
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
532 if retcode:
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
533 sys.exit(retcode) # indicate failure to job runner
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
534
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
535
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
536 if __name__ == "__main__":
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
537 main()
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
538
8c578211a681 Fixed nasty silly bug - fixed locally but not previously propogated
fubar
parents:
diff changeset
539