saga-project / bliss

ATTENTION: bliss is now saga-python. Please check out the new project website for the latest version: http://saga-project.github.com/saga-python/
http://saga-project.github.com/saga-python/
Other
8 stars 4 forks source link

implement job.get_cwd() & file transfer directives #47

Open andre-merzky opened 12 years ago

andre-merzky commented 12 years ago

Amongst others, that makes something like the following easy::

j = js.create_job (jd)
j.run ()

d = saga.filesystem.Directory (".")
d.copy ("input.dat", j.get_cwd ())
j.wait ()
d.copy (j.get_cwd() + "/output.dat", ".")