'tripal_stock_get_stock_by_nid', '%new_function' => 'tripal_get_stock', ] ); return tripal_get_stock(['nid' => $nid]); } /** * @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_get_stock(). * * @see tripal_get_stock(). */ function tripal_stock_get_stock_by_stock_id($stock_id) { tripal_report_error( 'tripal_deprecated', TRIPAL_NOTICE, "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.", [ '%old_function' => 'tripal_stock_get_stock_by_stock_id', '%new_function' => 'tripal_get_stock', ] ); return tripal_get_stock(['stock_id' => $stock_id]); } /** * @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_get_multiple_stocks(). * * @see tripal_get_multiple_stocks(). */ function tripal_stock_get_all_stocks() { tripal_report_error( 'tripal_deprecated', TRIPAL_NOTICE, "DEPRECATED: %old_function has been completely deprecated. There are often so many stocks in a chado database that it is unlikely a user really wants all of them.", [ '%old_function' => 'tripal_stock_get_all_stocks', ] ); $sql = "SELECT stock_id, nid from {chado_stock}"; $resource = db_query($sql); $stocks = []; while ($r = $resource->fetchObject()) { $node = node_load($r->nid); if ($node) { $stocks[$r->stock_id] = $node; } } return $stocks; } /** * @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_get_multiple_stocks(). * * @see tripal_get_multiple_stocks(). */ function tripal_stock_get_stocks($values) { tripal_report_error( 'tripal_deprecated', TRIPAL_NOTICE, "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.", [ '%old_function' => 'tripal_stock_get_stocks', '%new_function' => 'tripal_get_multiple_stocks', ] ); return tripal_get_multiple_stocks($values); } /** * @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_get_stock(). * * @see tripal_get_stock(). */ function tripal_stock_get_stocks_by_stockprop($stockprop_values, $stock_values) { tripal_report_error( 'tripal_deprecated', TRIPAL_NOTICE, "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.", [ '%old_function' => 'tripal_stock_get_stocks_by_stockprop', '%new_function' => 'tripal_get_stock', ] ); $stock_values['property'] = $stockprop_values; return tripal_get_multiple_stocks($stock_values); } /** * @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_get_stock(). * * Return all stocks with a given name identifier * which might match stock.name, stock.uniquename, dbxref.accession, * stockprop.value where stockprop.type='synonym' * * @param $name * The name identfier to be used * @param $organism_id * The stock.organism_id of the stock to be selected * * @return * An array of stock node objects * * @see tripal_get_stock(). */ function tripal_stock_get_stock_by_name_identifier($name, $organism_id) { tripal_report_error( 'tripal_deprecated', TRIPAL_NOTICE, "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.", [ '%old_function' => 'tripal_stock_get_stock_by_name_identifier', '%new_function' => 'tripal_get_stock', ] ); $stock_ids = []; $options = [ 'case_insensitive_columns' => ['name', 'uniquename', 'accession', 'value'], ]; // where name_identifier = stock.name------------------------------- $current_stocks = chado_select_record('stock', ['stock_id'], [ 'name' => $name, 'organism_id' => $organism_id, ], [ 'case_insensitive_columns' => ['name'], ] ); if (!empty($current_stocks)) { foreach ($current_stocks as $c) { $stock_ids[] = $c->stock_id; } } // where name_identifier = stock.uniquename------------------------------- $current_stocks = chado_select_record('stock', ['stock_id'], [ 'uniquename' => $name, 'organism_id' => $organism_id, ], [ 'case_insensitive_columns' => ['uniquename'], ] ); if (!empty($current_stocks)) { foreach ($current_stocks as $c) { $stock_ids[] = $c->stock_id; } } // where name_identifier = dbxref.accession------------------------------- // linked to stock through stock.dbxref $current_stocks = chado_select_record('stock', ['stock_id'], [ 'dbxref_id' => [ 'accession' => $name, ], 'organism_id' => $organism_id, ], [ 'case_insensitive_columns' => ['accession'], ] ); if (!empty($current_stocks)) { foreach ($current_stocks as $c) { $stock_ids[] = $c->stock_id; } } // linked to stock through stock_dbxref? $current_stocks = chado_select_record('stock_dbxref', ['stock_id'], [ 'dbxref_id' => [ 'accession' => $name, ], 'stock_id' => [ 'organism_id' => $organism_id, ], ], [ 'case_insensitive_columns' => ['accession'], ] ); if (!empty($current_stocks)) { foreach ($current_stocks as $c) { $stock_ids[] = $c->stock_id; } } // where name_identifier = stockprop.value------------------------------- // where type='synonym' $current_stocks = chado_select_record('stockprop', ['stock_id'], [ 'stock_id' => [ 'organism_id' => $organism_id, ], 'type_id' => [ 'cv_id' => variable_get('chado_stock_prop_types_cv', 'null'), 'name' => 'synonym', ], 'value' => $name, ], [ 'case_insensitive_columns' => ['value'], ] ); if (!empty($current_stocks)) { foreach ($current_stocks as $c) { $stock_ids[] = $c->stock_id; } } // Change from stock_ids to nodes----------------------------------- $stock_ids = array_filter($stock_ids); $stock_ids = array_unique($stock_ids); $stocks = []; foreach ($stock_ids as $stock_id) { $node = tripal_stock_get_stock_by_stock_id($stock_id); if ($node) { $stocks[] = $node; } } return $stocks; }