****************************************************************************************************
****************************************************************************************************
* PROGRAM: process_inputfiles.sas
* Created (mm/dd/yyyy): 11/30/2020
*--------------------------------------------------------------------------------------------------
* PURPOSE: The macro reads in the CREATEREPORTFILE and other input files and merges in relevant
* QRP input file parameter values
*--------------------------------------------------------------------------------------------------
* Sentinel Coordinating Center
* info@sentinelsystem.org
***************************************************************************************************;
%macro process_inputfiles();
%put =====> MACRO CALLED: process_inputfiles ;
%isdata(dataset=input.&createreportfile.);
%if %eval(&nobs<1) %then %do;
%put ERROR: (Sentinel) CREATEREPORTFILE is missing.;
%put ERROR: (Sentinel) Make sure file is specified correctly and placed in the inputfiles folder;
/*Read in CREATEREPORT_FILE and assign macro variables*/
set input.&createreportfile.;
call symputx('ReportType', reporttype, 'G');
call symputx('small_cellcounts',upcase(small_cellcounts),'G');
call symputx('redactevents',redactevents,'G');
call symputx('redactPT',redactPT,'G');
call symputx('stratifybyDP', upcase(stratifybyDP), 'G');
call symputx('seed', seed, 'G');
call symputx('groupsfile', groupsfile, 'G');
call symputx('baselinefile', baselinefile, 'G');
call symputx('tablefile', tablefile, 'G');
call symputx('figurefile', figurefile, 'G');
call symputx('labelfile', labelfile, 'G');
call symputx('itsregressionfile', itsregressionfile, 'G');
call symputx('treeaggfile', treeaggfile, 'G');
call symputx('appendixfile', appendixfile, 'G');
call symputx('selectionprobabilities',selectionprobabilities,'G');
call symputx('CodeDescriptionsFile',CodeDescriptionsFile,'G');
call symputx('TableColumnsFile',TableColumnsFile,'G');
call symputx('DPInfoFile', DPInfoFile, 'G');
call symputx('L2ComparisonsFile',L2ComparisonsFile,'G');
/*Look periods in report*/