function tripal_get_analysis_select_options

2.x tripal_analysis.api.inc tripal_get_analysis_select_options($syncd_only = TRUE)
3.x tripal_chado.module.DEPRECATED.api.inc tripal_get_analysis_select_options($syncd_only = true)

Returns a list of analyses that are currently synced with Drupal to use in select lists.

Parameters

$syncd_only: Whether or not to return all chado analyses or just those sync'd with drupal. Defaults to TRUE (only sync'd analyses).

Return value

An array of analyses sync'd with Drupal where each value is the analysis scientific name and the keys are analysis_id's.

1 call to tripal_get_analysis_select_options()
tripal_feature_delete_form in legacy/tripal_feature/includes/tripal_feature.delete.inc
A form for indicating the features to delete

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 64
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_analysis_select_options($syncd_only = true) {
  chado_get_analysis_select_options($syncd_only);
}