本文整理汇总了Python中app.model.DBSession.getRegId方法的典型用法代码示例。如果您正苦于以下问题:Python DBSession.getRegId方法的具体用法?Python DBSession.getRegId怎么用?Python DBSession.getRegId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app.model.DBSession
的用法示例。
在下文中一共展示了DBSession.getRegId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setAltId
# 需要导入模块: from app.model import DBSession [as 别名]
# 或者: from app.model.DBSession import getRegId [as 别名]
def setAltId(self,value):
try:
regConfig = DBSession().query(MolRegConfig).get(value)
self.mol_reg_id = regConfig.getRegId()
except Exception,e:
log.exception(e)
raise Exception("Configure your registry id prefix first using the 'Configure' link.")
示例2: setUp
# 需要导入模块: from app.model import DBSession [as 别名]
# 或者: from app.model.DBSession import getRegId [as 别名]
def setUp(self):
super(TestStudy,self).setUp()
self.program=DBSession().query(Program).first()
self.org=DBSession().query(Org).first()
self.user = User.by_user_name('studyuser')
mrc = DBSession().query(MolRegConfig).first()
self.prefix_id = mrc.id_prefix
s=Study()
s.title = 'Test title'
s.description = 'Test description'
s.uuid = uuid.uuid4().hex
s.created_by_id = self.user.user_id
s.program_id = self.program.program_id
s.org_id = self.org.org_id
DBSession().add(s)
DBSession().flush()
self.study_id = s.id
benz=Mol()
benz.mol_struct = benzene
benz.mol_reg_id = mrc.getRegId()
benz = mergeMol(benz)
imid=Mol()
imid.mol_struct = imidazole
imid.mol_reg_id = mrc.getRegId()
imid = mergeMol(imid)
transaction.commit()
self.study = Study.byId(self.study_id)
self.program=DBSession().query(Program).first()
self.org=DBSession().query(Org).first()
self.user = User.by_user_name('studyuser')