Ejemplo n.º 1
0
        def taskFun(self):
            """make shell script using the template"""
            """run shell command"""
            if distributed == True:
                shellCmd = "qsub -sync y -S /bin/bash %s" % scriptToRun
            else:
                shellCmd = "/bin/bash %s" % scriptToRun

            runShellCmd(shlex.split(shellCmd))
Ejemplo n.º 2
0
        def taskFun(self):
            """make shell script using the template"""
            """run shell command"""
            if distributed == True:
                shellCmd = "qsub -sync y -S /bin/bash %s" % scriptToRun
            else:
                shellCmd = "/bin/bash %s" % scriptToRun

            runShellCmd(shlex.split(shellCmd))
Ejemplo n.º 3
0
 def taskFun():
     """make shell script using the template"""
     """run shell command"""
     shellCmd = "qsub -sync y -S /bin/bash %s" % scriptToRun
     runShellCmd(shlex.split(shellCmd))
Ejemplo n.º 4
0
 def taskFun(self):
     """make shell script using a template"""
     """run shell command"""
     shellCmd = "/bin/bash %s" % scriptToRun
     runShellCmd(shlex.split(shellCmd))
Ejemplo n.º 5
0
 def taskFun():
     """make shell script using the template"""
     """run shell command"""
     shellCmd = "qsub -sync y -S /bin/bash %s" % scriptToRun
     runShellCmd(shlex.split(shellCmd))
Ejemplo n.º 6
0
 def taskFun(self):
     """make shell script using a template"""
     """run shell command"""
     shellCmd = "/bin/bash %s" % scriptToRun
     runShellCmd(shlex.split(shellCmd))