def generateSSforAllEnd(): ids=set([a['id'] for a in dbLodex.runInfo.find()]) pprint(len(ids)) for idEnd in ids: print idEnd pp.postProcForId(idEnd)
def generateSchemas(argv): if argv == "all": ids = set([a['id'] for a in dbLodex.runInfo.find()]) print(len(ids)) for id in ids: pp.postProcForId(id) pp.postProcForIdCluster(id) else: pp.postProcForId(argv) pp.postProcForIdCluster(argv)
def generateSSforEndById(id): pp.postProcForId(id)