Skip to content

Commit

Permalink
QC results (sample_data.meta.QCres) must be reset to empty before re-…
Browse files Browse the repository at this point in the history
…running QC procedures to prevent fantom QC results to still be present in QC stats result table GUI.
  • Loading branch information
ggalibert committed Dec 21, 2016
1 parent 9458813 commit 84eb406
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion FlowManager/autoQCManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@
end
end

% we reset QC flags to 0
for k = 1:length(sample_data)
% reset QC flags to 0
type{1} = 'dimensions';
type{2} = 'variables';
for m = 1:length(type)
Expand All @@ -136,6 +136,9 @@
sample_data{k}.(type{m}){l}.flags(:) = 0;
end
end

% reset QC results
sample_data{k}.meta.QCres = {};
end

% run each data set through the chain
Expand Down

0 comments on commit 84eb406

Please sign in to comment.