File tree Expand file tree Collapse file tree 4 files changed +80
-0
lines changed Expand file tree Collapse file tree 4 files changed +80
-0
lines changed Original file line number Diff line number Diff line change 1+ .. code-block :: python 
2+ 
3+   @schema  
4+   class  Mouse (dj .Manual ): 
5+     definition =  """  
6+     mouse_name : varchar(64) 
7+     --- 
8+     mouse_dob : datetime 
9+     """  
10+ 
11+   @schema  
12+   class  MouseDeath (dj .Manual ): 
13+     definition =  """  
14+     -> Mouse 
15+     --- 
16+     death_date : datetime 
17+     """  
Original file line number Diff line number Diff line change 1+ .. code-block :: python 
2+ 
3+   @schema  
4+   class  EEGRecording (dj .Manual ): 
5+     definition =  """  
6+     -> Session 
7+     eeg_recording_id : int 
8+     --- 
9+     eeg_system : varchar(64) 
10+     num_channels : int 
11+     """  
12+ 
13+   @schema  
14+   class  ChannelData (dj .Imported ): 
15+     definition =  """  
16+     -> EEGRecording 
17+     channel_idx : int 
18+     --- 
19+     channel_data : longblob 
20+     """  
Original file line number Diff line number Diff line change 1+ .. code-block :: python 
2+ 
3+   @schema  
4+   class  Mouse (dj .Manual ): 
5+     definition =  """  
6+     mouse_name : varchar(64) 
7+     --- 
8+     mouse_dob : datetime 
9+     """  
10+ 
11+   @schema  
12+   class  SubjectGroup (dj .Manual ): 
13+     definition =  """  
14+     group_number : int 
15+     --- 
16+     group_name : varchar(64) 
17+     """  
18+ 
19+     class  GroupMember (dj .Part ): 
20+       definition =  """  
21+       -> master 
22+       -> Mouse 
23+       """  
Original file line number Diff line number Diff line change 1+ .. code-block :: python 
2+ 
3+   @schema  
4+   class  RecordingModality (dj .Lookup ): 
5+     definition =  """  
6+     modality : varchar(64) 
7+     """  
8+ 
9+   @schema  
10+   class  MultimodalSession (dj .Manual ): 
11+     definition =  """  
12+     -> Session 
13+     modes : int 
14+     """  
15+ 
16+     class  SessionMode (dj .Part ): 
17+       definition =  """  
18+       -> master 
19+       -> RecordingModality 
20+       """  
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments