function tripal_get_location_string

2.x tripal_feature.api.inc tripal_get_location_string($featureloc)
3.x tripal_chado.module.DEPRECATED.api.inc tripal_get_location_string($featureloc)

Returns a string representing a feature location in an alignment.

Parameters

$featureloc: A single featureloc object generated using chado_generate_var that contains a record from the chado.featureloc table.

@return A string of the format: uniquename:featurelocmin..featurelocmax.strand

1 call to tripal_get_location_string()
tripal_feature_load_featureloc_sequences in legacy/tripal_feature/theme/tripal_feature.theme.inc
Get the sequence this feature is located on

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 845
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_get_location_string($featureloc) {
  chado_get_location_string($featureloc);
}