array
array.restore
                                                                                
  class               kiara_modules.core.array.ArrayRestorePipelineModule       
                                                                                
  is pipeline         yes                                                       
                                                                                
  doc                 Load a column from a table object, returning an array.    
                                                                                
  config class        kiara.pipeline.config.PipelineConfig                      
                                                                                
  config               ──────────────────────────────────────────────────────   
                        constants       object   Value constants for this       
                                                 module.                        
                        defaults        object   Value defaults for this        
                                                 module.                        
                        documentation   string   Documentation about what       
                                                 the pipeline does.             
                        context         object   Metadata for this workflow.    
                       ──────────────────────────────────────────────────────   
                                                                                
  pipeline inputs     base_path:                                                
                        type: string                                            
                        doc: The path to the folder that contains the table f…  
                      rel_path:                                                 
                        type: string                                            
                        doc: The relative path to the table file within base_…  
                      format:                                                   
                        type: string                                            
                        doc: The format of the table file ('feather' or 'parq…  
                      column_name:                                              
                        type: string                                            
                        doc: The name of the column to extract.                 
                                                                                
                                                                                
  pipeline outputs    array:                                                    
                        type: array                                             
                        doc: The column.                                        
                                                                                
                                                                                
  processing stages   stage 0:                                                  
                        load_table:                                             
                          module: table.load                                    
                          desc: Load a table object from disk.                  
                          inputs:                                               
                          - base_path ← __pipeline__.base_path                  
                          - rel_path ← __pipeline__.rel_path                    
                          - format ← __pipeline__.format                        
                          outputs:                                              
                          - table                                               
                      stage 1:                                                  
                        cut_column:                                             
                          module: table.cut_column                              
                          desc: Cut off one column from a table, returning an…  
                          inputs:                                               
                          - table ← load_table.table                            
                          - column_name ← __pipeline__.column_name              
                          outputs:                                              
                          - array → __pipeline__.array