예제 #1
0
파일: task.py 프로젝트: lindechun/pypeFLOW
        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))
예제 #2
0
파일: task.py 프로젝트: lindechun/pypeFLOW
        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))
예제 #3
0
파일: task.py 프로젝트: lindechun/pypeFLOW
 def taskFun():
     """make shell script using the template"""
     """run shell command"""
     shellCmd = "qsub -sync y -S /bin/bash %s" % scriptToRun
     runShellCmd(shlex.split(shellCmd))
예제 #4
0
파일: task.py 프로젝트: lindechun/pypeFLOW
 def taskFun(self):
     """make shell script using a template"""
     """run shell command"""
     shellCmd = "/bin/bash %s" % scriptToRun
     runShellCmd(shlex.split(shellCmd))
예제 #5
0
파일: task.py 프로젝트: lindechun/pypeFLOW
 def taskFun():
     """make shell script using the template"""
     """run shell command"""
     shellCmd = "qsub -sync y -S /bin/bash %s" % scriptToRun
     runShellCmd(shlex.split(shellCmd))
예제 #6
0
파일: task.py 프로젝트: lindechun/pypeFLOW
 def taskFun(self):
     """make shell script using a template"""
     """run shell command"""
     shellCmd = "/bin/bash %s" % scriptToRun
     runShellCmd(shlex.split(shellCmd))