function tripal_feature_reverse_complement
2.x tripal_feature.DEPRECATED.inc | tripal_feature_reverse_complement($sequence) |
3.x tripal_feature.DEPRECATED.inc | tripal_feature_reverse_complement($sequence) |
1.x tripal_feature.api.inc | tripal_feature_reverse_complement($sequence) |
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 tripal_reverse_compliment_sequence().
See also
tripal_reverse_compliment_sequence().
File
- tripal_feature/
api/ tripal_feature.DEPRECATED.inc, line 464 - Wrapper functions to provide backwards compatibility for the tripal feature api
Code
function tripal_feature_reverse_complement($sequence) {
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_reverse_complement',
'%new_function' => 'tripal_reverse_compliment_sequence'
)
);
return tripal_reverse_compliment_sequence($sequence);
}