1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
|
########################################################################################
# #
# Author: Herve Menager, #
# Organization:'Biological Software and Databases' Group, Institut Pasteur, Paris. #
# Distributed under GPLv2 Licence. Please refer to the COPYING.LIB document. #
# #
########################################################################################
MOBYLEHOME = None
import os
import sys
if os.environ.has_key('MOBYLEHOME'):
MOBYLEHOME = os.environ['MOBYLEHOME']
if not MOBYLEHOME:
sys.exit('MOBYLEHOME must be defined in your environment')
if ( os.path.join( MOBYLEHOME , 'Src' ) ) not in sys.path:
sys.path.append( os.path.join( MOBYLEHOME , 'Src' ) )
import urllib, urllib2, cookielib #@UnresolvedImport
from Mobyle.ConfigManager import Config
from Workflow import Parser
if __name__ == "__main__":
cfg = Config()
url = cfg.cgi_url()+'/workflow.py'
# the cookie jar keeps the Mobyle session cookie in a warm place, so that
# all the HTTP requests connect to the same workspace
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
mp = Parser()
def get_str(params):
data = urllib.urlencode(params)
req = urllib2.Request(url, data)
handle = opener.open(req)
str = handle.read()
return str.strip('\n')
def get_xml(params):
return mp.XML(get_str(params))
# create a workflow and store its id
params = {
'object':'workflow',
'action':'create'
}
w = get_xml(params)
print w
# edit workflow properties
params = {
'object':'workflow',
'action':'update',
'workflow_id':w.id,
'description':'test workflow description',
'title':'test workflow title',
}
w = get_xml(params)
print w
# create the clustalw-multialign task
params = {
'object':'task',
'action':'create',
'workflow_id':w.id,
'service_pid':'clustalw-multialign',
}
t = get_xml(params)
print t
# edit the clustalw-multialign task
params = {
'object':'task',
'action':'update',
'workflow_id':w.id,
'task_id':t.id,
'suspend':'false',
'description':'Run a clustalw',
}
t = get_xml(params)
print t
# create the protdist task
params = {
'object':'task',
'action':'create',
'workflow_id':w.id,
'service_pid':'protdist',
}
t = get_xml(params)
print t
# edit the protdist task
params = {
'object':'task',
'action':'update',
'workflow_id':w.id,
'task_id':t.id,
'suspend':'true',
'description':'Run a protdist',
}
t = get_xml(params)
print t
# create the sequences input parameter
params = {
'object':'parameter',
'action':'create',
'workflow_id':w.id,
'stream':'input',
}
p = get_xml(params)
print p
# edit the sequences parameter
params = {
'object':'parameter',
'action':'update',
'workflow_id':w.id,
'parameter_id':p.id,
'name': 'sequences',
'prompt': 'Input sequences',
'example': """>R
AAATA
>S
AAATT
""",
'datatype_class': 'Sequence',
'biotype':'Protein'
}
p = get_xml(params)
print p
# create the format input parameter
params = {
'object':'parameter',
'action':'create',
'workflow_id':w.id,
'stream':'input',
}
p = get_xml(params)
print p
# edit the sequences parameter
params = {
'object':'parameter',
'action':'update',
'workflow_id':w.id,
'parameter_id':p.id,
'name': 'alignment_format',
'prompt': 'Alignment format',
'datatype_class': 'String'
}
p = get_xml(params)
print p
# create the matrix output parameter
params = {
'object':'parameter',
'action':'create',
'workflow_id':w.id,
'stream':'output',
}
p = get_xml(params)
print p
# edit the matrix output parameter
params = {
'object':'parameter',
'action':'update',
'workflow_id':w.id,
'parameter_id':p.id,
'name': 'matrix',
'prompt': 'Distance matrix',
'datatype_class': 'Matrix',
'datatype_superclass': 'AbstractText',
'biotype':'Protein'
}
p = get_xml(params)
print p
# create the sequences-to-clustalw link
params = {
'object':'link',
'action':'create',
'workflow_id':w.id,
}
l = get_xml(params)
print l
# edit the sequences-to-clustalw link
params = {
'object':'link',
'action':'update',
'workflow_id':w.id,
'link_id':l.id,
'from_parameter': '1',
'to_task': '1',
'to_parameter': 'infile'
}
p = get_xml(params)
print p
# create the alig_format-to-clustalw link
params = {
'object':'link',
'action':'create',
'workflow_id':w.id,
}
l = get_xml(params)
print l
# edit the alig_format-to-clustalw link
params = {
'object':'link',
'action':'update',
'workflow_id':w.id,
'link_id':l.id,
'from_parameter': '2',
'to_task': '1',
'to_parameter': 'outputformat'
}
p = get_xml(params)
print p
# create the clustalw-to-protdist link
params = {
'object':'link',
'action':'create',
'workflow_id':w.id,
}
l = get_xml(params)
print l
# edit the clustalw-to-protdist link
params = {
'object':'link',
'action':'update',
'workflow_id':w.id,
'link_id':l.id,
'from_task': '1',
'from_parameter': 'aligfile',
'to_task': '2',
'to_parameter': 'infile'
}
p = get_xml(params)
print p
# create the protdist-to-output link
params = {
'object':'link',
'action':'create',
'workflow_id':w.id,
}
l = get_xml(params)
print l
# edit the protdist-to-output link
params = {
'object':'link',
'action':'update',
'workflow_id':w.id,
'link_id':l.id,
'from_task': '2',
'from_parameter': 'outfile',
'to_parameter': '3'
}
p = get_xml(params)
print p
# get the workflow
params = {
'object':'workflow',
'action':'get',
'workflow_id':w.id
}
w = get_xml(params)
print w
# get the workflow
params = {
'object':'workflow',
'action':'get_url',
'workflow_id':w.id
}
w = get_str(params)
print "created workflow definition: %s" % w
# list the session workflow IDs...
params = {
'object':'workflow',
'action':'list'
}
l = get_str(params)
print "list of workflow definitions for current session: %s" % l
url = cfg.cgi_url()+'/session_job_submit.py'
params = {'workflowUrl': w,
'sequences': """>A
TTTT
>B
TATA""",
'alignment_format': 'PHYLIP',
'email': 'hmenager@pasteur.fr'}
resp = get_str(params)
print resp
|