예제 #1
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'implementation';
     $this->id_column = 'id';
     $this->load->model('File');
 }
예제 #2
0
파일: runfile.php 프로젝트: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'runfile';
     $this->id_column = 'did';
     $this->load->model('File');
 }
예제 #3
0
파일: task.php 프로젝트: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'task';
     $this->id_column = 'task_id';
     $this->load->model('Estimation_procedure');
     $this->load->model('Task_inputs');
 }
예제 #4
0
파일: run.php 프로젝트: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'run';
     $this->id_column = 'rid';
     $this->load->model('Algorithm');
     $this->load->model('Task');
     $this->load->model('Dataset');
     $this->load->model('Evaluation');
     $this->load->model('Evaluation_fold');
     $this->load->model('Evaluation_sample');
     $this->load->model('Implementation');
     $this->load->model('Math_function');
     $this->load->model('Runfile');
 }
예제 #5
0
파일: input.php 프로젝트: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'input';
     $this->id_column = 'fullName';
 }
예제 #6
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'data_feature';
     $this->id_column = array('did', 'index');
 }
예제 #7
0
파일: dataset.php 프로젝트: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'dataset';
     $this->id_column = 'did';
 }
예제 #8
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'evaluation';
     $this->id_column = array('did', 'function', 'label');
 }
예제 #9
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'bibliographical_reference';
     $this->id_column = 'id';
 }
예제 #10
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'task_type';
     $this->id_column = 'ttid';
 }
예제 #11
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'task_inputs';
     $this->id_column = array('task_id', 'input');
 }
예제 #12
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'workflow_setup';
     $this->id_column = 'sid';
 }
예제 #13
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'algorithm_setup';
     $this->id_column = 'sid';
 }
예제 #14
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'input_setting';
     $this->id_column = array('setup', 'input');
 }
예제 #15
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'schedule';
     $this->id_column = array('sid', 'task_id');
 }
예제 #16
0
파일: tag.php 프로젝트: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->id_column = array('id', 'tag');
 }
예제 #17
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'implementation_component';
     $this->id_column = array('parent', 'child');
 }
예제 #18
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'algorithm_quality';
     $this->id_column = array('implementation_id', 'quality', 'label');
 }
예제 #19
0
파일: study.php 프로젝트: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'study';
     $this->id_column = 'id';
 }
예제 #20
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'data_quality_interval';
     $this->id_column = array('data', 'quality', 'interval_start', 'interval_end');
 }
예제 #21
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'evaluation_interval';
     $this->id_column = array('did', 'function', 'label', 'interval_start', 'interval_end');
 }
예제 #22
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'data_quality';
     $this->id_column = array('data', 'quality', 'label');
 }
예제 #23
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'output_data';
     $this->id_column = array('run', 'data');
 }
예제 #24
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'task_io_types';
     $this->id_column = 'name';
 }