function a_crit_bundle = matchingControlNeuron(a_bundle, neuron_id, props)
% matchingControlNeuron - Creates a criterion database for matching the neuron at traceset_index.
%
% Usage:
% a_crit_bundle = matchingControlNeuron(a_bundle, neuron_id, props)
%
% Description:
% Copies selected test values from row as the first row into the
% criterion db. Adds a second row for the STD of each column in the db.
%
% Parameters:
% a_bundle: A physiol_bundle object.
% neuron_id: A NeuronId of the neuron to match.
% props: A structure with any optional properties.
%
% Returns:
% a_crit_bundle: A tests_db with two rows for values and STDs.
%
% Example:
% Matches gpd0421c from cip_traces_all_axoclamp.txt:
% >> a_crit_bundle = matchingControlNeuron(pbundle, 33)
% (see example in matchingRow)
%
% See also: rankMatching, tests_db, tests2cols
%
% $Id$
%
% Author: Cengiz Gunay <cgunay@emory.edu>, 2005/12/21
% Copyright (c) 2007 Cengiz Gunay <cengique@users.sf.net>.
% This work is licensed under the Academic Free License ("AFL")
% v. 3.0. To view a copy of this license, please look at the COPYING
% file distributed with this software or visit
% http://opensource.org/licenses/afl-3.0.php.
if ~ exist('props','var')
props = struct;
end
% Get control TracesetIndex using NeuronId
t_idx = ...
a_bundle.joined_control_db(a_bundle.joined_control_db(:, 'NeuronId') == neuron_id, ...
'TracesetIndex').data;
% Delegate to TracesetIndex version
a_crit_bundle = matchingRow(a_bundle, t_idx, props);