示例#1
0
 function __construct()
 {
     parent::__construct();
     $this->table = 'implementation';
     $this->id_column = 'id';
     $this->load->model('File');
 }
示例#2
0
 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
 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');
 }
 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');
 }
 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';
 }