コード例 #1
0
ファイル: convert_re.py プロジェクト: manucorreia/biopython
def convert_at(group_names, name, where):
    if where == "at_beginning":
        return Expression.AtBeginning()
    elif where == "at_end":
        return Expression.AtEnd()
    raise AssertionError("Unknown at name: %s" % repr(where))
コード例 #2
0
ファイル: __init__.py プロジェクト: manucorreia/biopython
def Eof():
    raise NotImplementedError
    return Expression.AtEnd()