Exemple #1
0
 def __init__(self, *args , **kargs):
     """
     """
     for k,v in kargs.iteritems():
         if k in dict(self.fields):
             setattr(self, k, v)
     
     OEBase.__init__(self, *args, **kargs)
 def __init__(self, *args , **kargs):
     """
     """
     OEBase.__init__(self, *args, **kargs)
     for k,v in self.fields:
         if k in kargs:
             self[k] = kargs[k]
     self._t = None
    def __init__(self, *args, **kargs):
        """
        """
        for k, v in kargs.iteritems():
            if k in dict(self.fields):
                setattr(self, k, v)

        OEBase.__init__(self, *args, **kargs)
Exemple #4
0
 def __init__(self, *args , **kargs):
     """In addition to neo initialization (see neo.core.Epoch),
     we set the following SQL fields:
         name, Text
         label, Text
         time, Float
         duration, Float
         num, Integer
     """
     neo.core.Epoch.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #5
0
 def __init__(self, *args, **kargs):
     """In addition to neo initialization (see neo.core.Epoch),
     we set the following SQL fields:
         name, Text
         label, Text
         time, Float
         duration, Float
         num, Integer
     """
     neo.core.Epoch.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #6
0
 def __init__(self, *args , **kargs):
     """Creates a new Event.
     
     In addition to neo.core.Event initialization, the following SQL
     fields are set:
         name: Text
         label: Text
         time: Float
         num: Integer
     """
     neo.core.Event.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #7
0
 def __init__(self, *args , **kargs):
     """Initialize a new Block.
     
     In addition to the basic neo Block initialization, (see
     OpenElectrophy.neo.core.Block), the following fields in Block
     can be defined with sqlalchemy values:
         name : Text, name of the block
         info : Text, info about the block
         fileOrigin : Text, origin of the data
         datetime : DateTime, beginning of the data block
     """
     neo.core.Block.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #8
0
 def __init__(self, *args, **kargs):
     """Initialize a new Block.
     
     In addition to the basic neo Block initialization, (see
     OpenElectrophy.neo.core.Block), the following fields in Block
     can be defined with sqlalchemy values:
         name : Text, name of the block
         info : Text, info about the block
         fileOrigin : Text, origin of the data
         datetime : DateTime, beginning of the data block
     """
     neo.core.Block.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #9
0
 def __init__(self, *args , **kargs):
     """Creates a new Segment.
     
     In addition to the basic neo Segment initialization, (see
     OpenElectrophy.neo.core.Segment), the following fields in Block
     can be defined with sqlalchemy values:
         name : Text, name of the segment
         num : Integer
         info : Text, info about the segment
         fileOrigin : Text, origin of the data
         datetime : DateTime, beginning of the data segment
     """
     neo.core.Segment.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #10
0
 def __init__(self, *args, **kargs):
     """Creates a new Segment.
     
     In addition to the basic neo Segment initialization, (see
     OpenElectrophy.neo.core.Segment), the following fields in Block
     can be defined with sqlalchemy values:
         name : Text, name of the segment
         num : Integer
         info : Text, info about the segment
         fileOrigin : Text, origin of the data
         datetime : DateTime, beginning of the data segment
     """
     neo.core.Segment.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #11
0
 def __init__(self, *args , **kargs):        
     neo.core.AnalogSignal.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #12
0
 def __init__(self, *args, **kargs):
     """
     """
     neo.core.Spike.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
 def __init__(self, *args, **kargs):
     """
     """
     neo.core.RecordingPoint.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
 def __init__(self, *args, **kargs):
     """
     """
     neo.core.RecordingPoint.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #15
0
 def init_on_load(self):       
     OEBase.init_on_load(self)
Exemple #16
0
 def init_on_load(self):
     OEBase.init_on_load(self)
     self._t = None
Exemple #17
0
 def __init__(self, *args , **kargs):
     """
     """
     neo.core.Neuron.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #18
0
 def __init__(self, *args , **kargs):
     """
     """
     neo.core.Spike.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)
Exemple #19
0
 def __init__(self, *args, **kargs):
     """
     """
     neo.core.Neuron.__init__(self, *args, **kargs)
     OEBase.__init__(self, *args, **kargs)