コード例 #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))