-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathTREAT_OnCore_Import.sas
149 lines (114 loc) · 3.73 KB
/
TREAT_OnCore_Import.sas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/************************
TREAT 001 Import program
This program will import the data from OnCore SAS files into a folder with the current date and QC folder.
CHANGE ALL THE PATHs to YOUR STUDY FOLDER FILE PATHS!!
*/
* delete all sas and txt files from rawdata folder that were created in the previous run of this code;
/*Updates:
4/11/2016 Abhidnya Kawli: Merged SpMeds1 and SpMeds2 into SpMeds. Also merged Otherlabs1 and Otherlabs2 into Otherlabs.
These datasets need to be merged for creating the analysis datasets as well as for QC.
****************************************************************************************************************/
%let path=I:\Projects\TREAT\Data Management\OnCore Data\Rawdata;
filename filrf "&path.";
data _null_;
did = dopen('filrf');
memcount = dnum(did);
do while (memcount>0);
fname = dread(did,memcount);
if scan(lowcase(fname),2,'.')='sas' or scan(lowcase(fname),2,'.')='txt' then do;
rcref = filename('fref',catx('\',"&path.",fname));
rcdel = fdelete('fref');
end;
memcount+-1;
end;
stop;
run;
%include 'I:\Projects\TREAT\Data Management\sas\SASMacros\OnCoreMacros.sas';
*Copy the .sas files from the download folder TO the Raw Data Folder;
%CopyOnCoreSASFiles(I:\Projects\TREAT\Data Management\OnCore Data\Rawdata\Downloads\,
I:\Projects\TREAT\Data Management\OnCore Data\Rawdata\)
*Call the macro that creates the Formats.sas program;
%CreateOncoreFormatFile(I:\Projects\TREAT\Data Management\OnCore Data\Rawdata\,
I:\Projects\TREAT\Data Management\OnCore Data\,formats.sas);
*Call the macro that copies the data .txt files to the Raw Data folder;
%CopyOnCoreTextFiles(I:\Projects\TREAT\Data Management\OnCore Data\Rawdata\Downloads\,
I:\Projects\TREAT\Data Management\OnCore Data\Rawdata\);
*Call the macro that runs the moved SAS programs;
%RunBatchSASFiles(I:\Projects\TREAT\Data Management\OnCore Data\Rawdata\);
%include 'I:\Projects\TREAT\Data Management\sas\SASMacros\ImportMacro.sas';
%DemoRace();
%datafix();
options dlcreatedir;
* these are the datasets to use for analysis since they are in static folders;
libname Datasets "I:\Projects\TREAT\Data Management\OnCore Data\Datasets\&sysdate";
* these are the datasets to use for QC and to generate regular reports since you will not have to
change the directory location in the code using this library;
libname QCdata "I:\Projects\TREAT\Data Management\OnCore Data\Datasets\QC";
title 'Copy datasets';
proc datasets library = work;
copy out = Datasets;
select
AnthroMeas
Audit
Bloodchem
BloodUrine
Coagulation
CoffeeTea
Complications
ConMeds
Death
demog
EligCases
EligControls
FamHist
followup
Hematology
Hospital
Lipids
LiverBiop
LiverHist
Otherlabs1
Otherlabs2
NIAAA
PBMC
PhysExam
PTSD
SF36
Shipping
SleepQS
SpMeds1
SpMeds2
Stool
SubjChar
Termination
tlfb
TobaccoQS
VitalSigns;
run;
/*Merged SpMeds1 and SpMeds2 into SpMeds. Also merged Otherlabs1 and Otherlabs2 into Otherlabs.
These datasets need to be merged for creating the analysis datasets as well as for QC. */
proc sort data=Datasets.SpMeds1;
by studyid segment;
run;
proc sort data=Datasets.SpMeds2;
by studyid segment;
run;
proc sort data=Datasets.Otherlabs1;
by studyid segment;
run;
proc sort data=Datasets.Otherlabs2;
by studyid segment;
run;
data Datasets.SpMeds;
merge Datasets.SpMeds1 Datasets.SpMeds2;
by studyid segment;
run;
data Datasets.Otherlabs;
merge Datasets.Otherlabs1 Datasets.Otherlabs2;
by studyid segment;
run;
proc datasets library = Datasets;
copy out = QCdata;
run;
%CreateDataDictionary(I:\Projects\TREAT\Data Management\OnCore Data\Datasets\&SYSDATE,
I:\Projects\TREAT\Data Management\OnCore Data\Codebook.xlsx,,YES);