Skip to content

Commit 02e5681

Browse files
committed
Addresses JC 1b and 2
1 parent f1e2cdc commit 02e5681

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ To mask a property, provide an array of the properties to mask in the `construct
144144
"label": "patient",
145145
"type": "CSVPatientExtractor",
146146
"constructorArgs": {
147-
"filePath": "./data/patient-information.csv"
147+
"fileName": "patient-information.csv"
148148
"mask": ["address", "birthDate"]
149149
}
150150
}
@@ -157,7 +157,7 @@ Alternatively, providing a string with a value of `all` in the `constructorArgs`
157157
"label": "patient",
158158
"type": "CSVPatientExtractor",
159159
"constructorArgs": {
160-
"filePath": "./data/patient-information.csv"
160+
"fileName": "patient-information.csv"
161161
"mask": "all"
162162
}
163163
}

config/csv.config.example.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"patientIdCsvPath": "~/absolute/path/to/patient-mrns.csv",
2+
"patientIdCsvPath": "Users/YourAccount/absolute/path/to/patient-mrns.csv",
33
"commonExtractorArgs": {
4-
"dataDirectory": "~/absolute/path/to/data/directory"
4+
"dataDirectory": "Users/YourAccount/absolute/path/to/data/directory"
55
},
66
"notificationInfo": {
77
"host": "smtp.example.com",

0 commit comments

Comments
 (0)