function tripal_feature_analysis_update_property
2.x tripal_feature.DEPRECATED.inc | tripal_feature_analysis_update_property($analysis_id = NULL, $feature_id = NUll, $analysisfeature_id = NULL, $property, $value, $insert_if_missing = 0, $cv_name = 'tripal') |
3.x tripal_feature.DEPRECATED.inc | tripal_feature_analysis_update_property($analysis_id = NULL, $feature_id = NUll, $analysisfeature_id = NULL, $property, $value, $insert_if_missing = 0, $cv_name = 'tripal') |
1.x tripal_feature.api.inc | tripal_feature_analysis_update_property($analysis_id = NULL, $feature_id = NUll,
$analysisfeature_id = NULL, $property, $value, $insert_if_missing = 0,
$cv_name = 'tripal') |
Deprecated
Restructured API to make naming more readable and consistent. Function was deprecated in Tripal 2.0 and will be removed 2 releases from now. This function has been replaced by chado_update_property().
See also
File
- tripal_feature/
api/ tripal_feature.DEPRECATED.inc, line 115 - Wrapper functions to provide backwards compatibility for the tripal feature api
Code
function tripal_feature_analysis_update_property($analysis_id = NULL, $feature_id = NUll, $analysisfeature_id = NULL, $property, $value, $insert_if_missing = 0, $cv_name = 'tripal') {
tripal_report_error(
'tripal_deprecated',
TRIPAL_NOTICE,
"DEPRECATED: %old_function has been replaced with %new_function. Please update your code.",
array(
'%old_function' => 'tripal_feature_analysis_update_property',
'%new_function' => 'chado_update_property'
)
);
// check that the incoming arguments are correct
if (($analysis_id and !$feature_id) or
(!$analysis_id and $feature_id)) {
tripal_report_error('tripal_feature', TRIPAL_WARNING,
'tripal_feature_analysis_update_property: Both an analysis ID and feature ID should be specified',
array());
}
// get the analysisfeature_id if one is not provided
if (!$analysisfeature_id) {
$columns = array('analysisfeature_id');
$values = array('analysis_id' => $analysis_id, 'feature_id' => $feature_id);
$result = chado_select_record('analysisfeature', $columns, $values);
$analysisfeature_id = $result[0]->analysisfeature_id;
}
$record = array(
'table' => 'analysisfeature',
'id' => $analysisfeature_id,
);
$property = array(
'type_name' => $property,
'cv_name' => $cv_name,
'value' => $value
);
$options = array(
'insert_if_missing' => $insert_if_missing,
);
// update the property.
return chado_update_property($record, $property, $options);
}