function tripal_reverse_compliment_sequence

2.x tripal_feature.api.inc tripal_reverse_compliment_sequence($sequence)
3.x tripal_chado.module.DEPRECATED.api.inc tripal_reverse_compliment_sequence($sequence)

Performs a reverse compliment of a nucleotide sequence.

Parameters

$sequence: The nucelotide sequence.

Return value

an upper-case reverse complemented sequence.

2 calls to tripal_reverse_compliment_sequence()
tripal_feature_load_featureloc_sequences in legacy/tripal_feature/theme/tripal_feature.theme.inc
Get the sequence this feature is located on
tripal_feature_reverse_complement in legacy/tripal_feature/api/tripal_feature.DEPRECATED.inc
1 string reference to 'tripal_reverse_compliment_sequence'

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 686
These api functions are deprecated, if your site is currently using them please update your code with the newer tripal_chado functions.

Code

function tripal_reverse_compliment_sequence($sequence) {
  chado_reverse_compliment_sequence($sequence);
}