コード例 #1
0
 def __init__(self, fileobject, lines_to_ignore, chunkmap):
     ChunkedNLMOutput.__init__(self,
                               type_of_lines=MetamapLine,
                               fileobject=fileobject,
                               lines_to_ignore=lines_to_ignore,
                               chunkmap=chunkmap,
                               type_of_line_set=MetamapLineList)
コード例 #2
0
ファイル: semrep.py プロジェクト: nhsland/MEDRank
 def __init__(self, fileobject, lines_to_ignore, chunkmap):
     ChunkedNLMOutput.__init__(self,
                               fileobject,
                               type_of_lines=SemrepOutput.line_factory,
                               lines_to_ignore=lines_to_ignore,
                               chunkmap=chunkmap)
コード例 #3
0
ファイル: metamap.py プロジェクト: YZWD/MEDRank
 def __init__(self, fileobject, lines_to_ignore, chunkmap):
     ChunkedNLMOutput.__init__(self, type_of_lines=MetamapLine,
                                 fileobject=fileobject, 
                                 lines_to_ignore=lines_to_ignore,
                                 chunkmap=chunkmap,
                                 type_of_line_set=MetamapLineList)
コード例 #4
0
ファイル: mti.py プロジェクト: nhsland/MEDRank
 def __init__(self, fileobject, lines_to_ignore=DEFAULT_LINES_TO_IGNORE,
              chunkmap=FakeChunkmap()):
     ChunkedNLMOutput.__init__(self, type_of_lines=MtiLine,
                                 fileobject=fileobject, 
                                 lines_to_ignore=lines_to_ignore,
                                 chunkmap=chunkmap)
コード例 #5
0
ファイル: semrep.py プロジェクト: YZWD/MEDRank
 def __init__(self, fileobject, lines_to_ignore, chunkmap):
     ChunkedNLMOutput.__init__(self, fileobject,
                                 type_of_lines=SemrepOutput.line_factory,
                                 lines_to_ignore=lines_to_ignore,
                                 chunkmap=chunkmap)