function tripal_delete_phylotree

2.x tripal_phylogeny.api.inc tripal_delete_phylotree($phylotree_id)
3.x tripal_chado.module.DEPRECATED.api.inc tripal_delete_phylotree($phylotree_id)

Deletes a phylotree record from Chado.

Parameters

$phylotree_id:

Return value

TRUE on success, FALSE on failure.

1 call to tripal_delete_phylotree()
drush_tripal_phylogeny_trp_delete_phylotree in legacy/tripal_phylogeny/tripal_phylogeny.drush.inc
Deletes a phylotree record.

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 1116
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_delete_phylotree($phylotree_id) {
  chado_delete_phylotree($phylotree_id);
}