|
301 | 301 | "condition_type" : "Attribute",
|
302 | 302 | "attribute" : "diabetes_severity",
|
303 | 303 | "operator" : ">=",
|
304 |
| - "value" : 1 |
| 304 | + "value" : 2 |
305 | 305 | },
|
306 | 306 | {
|
307 | 307 | "condition_type" : "Not",
|
|
346 | 346 | "condition_type" : "Attribute",
|
347 | 347 | "attribute" : "diabetes_severity",
|
348 | 348 | "operator" : ">=",
|
349 |
| - "value" : 2 |
| 349 | + "value" : 3 |
350 | 350 | },
|
351 | 351 | {
|
352 | 352 | "condition_type" : "Not",
|
|
371 | 371 | "condition_type" : "Attribute",
|
372 | 372 | "attribute" : "diabetes_severity",
|
373 | 373 | "operator" : "<",
|
374 |
| - "value" : 2 |
| 374 | + "value" : 3 |
375 | 375 | },
|
376 | 376 | {
|
377 | 377 | "condition_type" : "Active Medication",
|
|
424 | 424 | "condition_type" : "Attribute",
|
425 | 425 | "attribute" : "diabetes_severity",
|
426 | 426 | "operator" : ">=",
|
427 |
| - "value" : 3 |
| 427 | + "value" : 4 |
428 | 428 | },
|
429 | 429 | {
|
430 | 430 | "condition_type" : "Not",
|
|
449 | 449 | "condition_type" : "Attribute",
|
450 | 450 | "attribute" : "diabetes_severity",
|
451 | 451 | "operator" : "<",
|
452 |
| - "value" : 3 |
| 452 | + "value" : 4 |
453 | 453 | },
|
454 | 454 | {
|
455 | 455 | "condition_type" : "Active Medication",
|
|
493 | 493 |
|
494 | 494 | "Insulin" : {
|
495 | 495 | "type" : "Simple",
|
| 496 | + "remarks" : ["around a third of patients with type 2 diabetes are on insulin ", |
| 497 | + "30.8% (17.8% only insulin and 13.0% insulin and other med)", |
| 498 | + "https://www.cdc.gov/diabetes/statistics/meduse/fig2.htm", |
| 499 | + "coincidentally around a third of patients have nephropathy", |
| 500 | + "for simplicity we'll make this a 1-1 relationship so that nephropathy --> insulin"], |
496 | 501 | "conditional_transition" : [
|
497 | 502 | {
|
498 | 503 | "condition" : {
|
499 |
| - "condition_type" : "Attribute", |
500 |
| - "attribute" : "diabetes_severity", |
501 |
| - "operator" : ">=", |
502 |
| - "value" : 4 |
| 504 | + "condition_type" : "Active Condition", |
| 505 | + "codes" : [{ |
| 506 | + "system" : "SNOMED-CT", |
| 507 | + "code" : "127013003", |
| 508 | + "display" : "Diabetic renal disease (disorder)" |
| 509 | + }] |
503 | 510 | },
|
504 | 511 | "transition" : "Prescribe_Insulin"
|
505 | 512 | },
|
|
1422 | 1429 | "complex_transition" : [
|
1423 | 1430 | {
|
1424 | 1431 | "condition" : {
|
1425 |
| - "condition_type" : "Active Condition", |
1426 |
| - "codes" : [{ |
1427 |
| - "system" : "SNOMED-CT", |
1428 |
| - "code" : "368581000119106", |
1429 |
| - "display" : "Neuropathy due to type 2 diabetes mellitus (disorder)" |
1430 |
| - }] |
| 1432 | + "condition_type" : "PriorState", |
| 1433 | + "name" : "Amputation_Necessary", |
| 1434 | + "within" : { "quantity" : 1, "unit" : "years" } |
| 1435 | + }, |
| 1436 | + "remarks" : ["dialysis means this check is made every few days which can skew results.", |
| 1437 | + "we only want to consider amputation once a year"], |
| 1438 | + "transition" : "No_Amputation_Necessary" |
| 1439 | + }, |
| 1440 | + { |
| 1441 | + "condition" : { |
| 1442 | + "condition_type" : "Active Condition", |
| 1443 | + "codes" : [{ |
| 1444 | + "system" : "SNOMED-CT", |
| 1445 | + "code" : "368581000119106", |
| 1446 | + "display" : "Neuropathy due to type 2 diabetes mellitus (disorder)" |
| 1447 | + }] |
1431 | 1448 | },
|
1432 | 1449 | "distributions" : [
|
1433 | 1450 | { "distribution" : 0.0025, "transition" : "Amputation_Necessary" },
|
1434 | 1451 | { "distribution" : 0.9975, "transition" : "No_Amputation_Necessary" }
|
1435 | 1452 | ],
|
1436 |
| - "remarks" : ["Amputations resulting from type-2 diabetes in the US occur in 0.25% of the population", |
| 1453 | + "remarks" : ["In 2010, about 73,000 non-traumatic lower-limb amputations were performed in adults aged 20 years or older with diagnosed diabetes.", |
| 1454 | + "28.9 million adults had diagnosed diabetes. 73,000/ 28,900,000 = 0.0025 or 0.25% per year", |
1437 | 1455 | "https://www.cdc.gov/diabetes/data/statistics/2014statisticsreport.html"]
|
1438 | 1456 | },
|
1439 | 1457 | {
|
|
1477 | 1495 |
|
1478 | 1496 | "Delay_Before_Amputation" : {
|
1479 | 1497 | "type" : "Delay",
|
1480 |
| - "exact" : { "quantity" : "6", "unit" : "weeks" }, |
| 1498 | + "exact" : { "quantity" : 6, "unit" : "weeks" }, |
1481 | 1499 | "direct_transition" : "Amputation"
|
1482 | 1500 | },
|
1483 | 1501 |
|
|
0 commit comments