Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
close all;
cd C:\Users\kdrex\Documents\GitHub\smart-clinic-I
initLibs();
% indicate Study and subject
biomcollect = biom.Study('E:\smartdata');
subjects = biomcollect.loadSubjects();
% subjectNames = {subjects.Name};
subjectNames = {'BC0124a','BC0249a'};
start = datetime('27-Oct-2020 00:00:01','TimeZone','local');
ende = datetime('03-Nov-2020 23:59:59','TimeZone','local');
for i=1:length(subjectNames)
try
sub=biomcollect.loadSubject(subjectNames{i});
reports.clinic_I_feedbackReport(...
sub, ['./generated/reports/Klinik_I_FeedbackReport_', sub.Name],...
'Start',start,'Ende',ende);
catch exc
warning(['Uncatched error in ', sub.Name])
exc
end
end