Esempio n. 1
0
def buildSingleCell(SKID):
    aCell = GFinputNeuron(SKID)

    # sets annotations based on SKID
    aCell.annotations = GLT.setAnnotationLookUpTable(SKID)

    aCell.neuronName = GARI.getName(SKID)

    aCell.GF1synapseCount = 0

    return aCell
Esempio n. 2
0
def buildSingleCell(SKID):

    aCell = GFinputNeuron(SKID)

    #sets annotations based on SKID
    aCell.annotations = GetAnnotationsRemoveExtraneousInfo.setAnnotationLookUpTable(
        SKID)

    aCell.neuronName = GetAnnotationsRemoveExtraneousInfo.getName(SKID)

    aCell.GF1synapseCount = 0

    return aCell
Esempio n. 3
0
def buildSingleCellLC6partners(SKID):
    aCell = GFinputNeuron(SKID)

    # sets annotations based on SKID
    aCell.annotations = GetAnnotationsRemoveExtraneousInfo.setAnnotationLookUpTable(
        SKID)

    aCell.neuronName = GetAnnotationsRemoveExtraneousInfo.getName(SKID)

    aCell.GF1synapseCount = 0

    for i in aCell.annotations:
        if 'cluster' in i:
            aCell.classification = i
    return aCell