예제 #1
0
파일: TableIO.py 프로젝트: ecell/ecell3
def readTableAsArray(file,commentChars):
    t = _tableio.readTable(file,commentChars)
    a = TableToArray(t)
    return a
예제 #2
0
파일: TableIO.py 프로젝트: ecell/ecell3
def readColumns(file, commentChars, columns='all'):
    t = _tableio.readTable(file,commentChars)
    return extractColumns(t, columns)
예제 #3
0
파일: TableIO.py 프로젝트: ecell/ecell3
def readTable(file,commentChars):
    t = _tableio.readTable(file,commentChars)
    return t