[748a59]: / nih-ct-protocol-ui / src / app / mock-criteria.ts

Download this file

35 lines (33 with data), 870 Bytes

 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
import {searchCriteria} from './search-criteria';
export const CRITERIAS: searchCriteria[] = [
{
input: 'The platelet greater than or equal to 70000 platelets per cubic millimeter',
results : [
{
text : "platelet greater than or equal to 70000",
data_suggestions: "Platelet count >= 100,000/uL (transfusion independent)",
ctep_suggestions: "None"
}
]
},
// {
// input: 'ecog',
// results : [
// {
// text : "ecog",
// data_suggestions: "Eastern Cooperative Oncology Group (ECOG) performance status 0-1",
// ctep_suggestions: "None"
// }
// ]
// },
// {
// input: 'cancer',
// results : [
// {
// text : "cancer",
// data_suggestions: "Pathologically (histologically or cytologically) proven diagnosis of invasive breast cancer",
// ctep_suggestions: ""
// }
// ]
// }
];