当前位置: 首页>>代码示例>>Python>>正文


Python General.qsub方法代码示例

本文整理汇总了Python中General.qsub方法的典型用法代码示例。如果您正苦于以下问题:Python General.qsub方法的具体用法?Python General.qsub怎么用?Python General.qsub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在General的用法示例。


在下文中一共展示了General.qsub方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: open

# 需要导入模块: import General [as 别名]
# 或者: from General import qsub [as 别名]
    for l in open(args.l):
        info = l.strip().split('/')
        subdir = info[-2]
        name = General.getBase(os.path.basename(info[-1]))
        pid, cid = name.split('_')
        pdbf = subdir + '/' + pid + '.pdb'
        outf = subdir + '/' + name + '.' + args.ext
        if (not os.path.isfile(pdbf)) or (os.path.isfile(outf) and os.path.getsize(outf) > 0):
            continue
        outfs.append(outf)
        selstr = '"NAME CA WITHIN 25 OF CHAIN ' + cid + '"'
        cmd = ' '.join([PDB.confindPath, '--p', pdbf, '--o', outf, '--rLib', PDB.rotLib, '--pp', '--psel', selstr, '--sel', selstr])
        cmds.append(cmd)
        count += 1
        if count == args.bs:
            General.qsub(cmds)
            count = 0
            outfs = []
            cmds = []
    if len(outfs) != 0:
        General.qsub(cmds)
else: # for batch size > 1, cannot use chain selection
    listid = 0
    visited = {}
    sublist_pdb = open('sl_pdb.'+str(listid), 'w')
    sublist_cmap = open('sl_' + args.ext + '.' + str(listid), 'w')

    for l in open(args.l):
        info = l.strip().split('/')
        subdir = info[-2]
        name = General.getBase(os.path.basename(info[-1]))
开发者ID:vancalory,项目名称:searchDB,代码行数:33,代码来源:confindBatch.py

示例2: len

# 需要导入模块: import General [as 别名]
# 或者: from General import qsub [as 别名]
                "--p",
                pdb,
                "--he",
                args.he,
                "--oh",
                args.oh,
            ],
        )

        if not args.bbrmsd == None:
            cmd.append("--bbrmsd " + args.bbrmsd)
        if not args.nohomo == None:
            cmd.append("--nohomo " + args.nohomo)

        if args.uniq:
            cmd.append("--uniq")
        if args.nonat:
            cmd.append("--nonat")
        if args.smart:
            cmd.append("--smart")

        cmd = " ".join(cmd)
        cmds.append(cmd)

    if len(cmds) != 0:
        General.qsub(cmds)
        sleep(0.5)

    # print str(count), '/', str(all), ' directories finished...'
os.chdir(odir)
开发者ID:vancalory,项目名称:mustpress,代码行数:32,代码来源:process_all.py

示例3: open

# 需要导入模块: import General [as 别名]
# 或者: from General import qsub [as 别名]
batchsize = 30 # will run 30 command in a single job

count = 0
pdbfs = []

for l in open(args.l):
    info = l.strip().split('/')
    subdir = info[-2]
    name = General.getBase(info[-1])

    pdbf = subdir + '/' + name + '.pdb'
    outf = subdir + '/' + name + '.' + args.ext
    if (not os.path.isfile(pdbf)) or (os.path.isfile(outf)):
        continue

    pdbfs.append(pdbf)
    count += 1

    if count == 30:
        cmd = ['python', selfbin+'/extractSCcontacts.py', '--ext', args.ext, '--p'] + pdbfs
        cmd = ' '.join(cmd)
        General.qsub([cmd])
        pdbfs = []
        count = 0

if len(pdbfs) != 0:
    cmd = ['python', selfbin+'/extractSCcontacts.py', '--ext', args.ext, '--p'] + pdbfs
    cmd = ' '.join(cmd)
    General.qsub([cmd])
开发者ID:vancalory,项目名称:searchDB,代码行数:31,代码来源:extractSCcontactsAll.py


注:本文中的General.qsub方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。