Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Primary mentor

Profile Picture
User712020:83b2606e-19eb-4a3a-ad7d-2578748b0c52

Burke Mamlin

Backup mentor

Profile Picture
User712020:d6d399e2-ccb1-40eb-8095-f4eb701c3131

Shaun Grannis

Assigned to

Profile Picture
User712020:f34725b1-c8c5-4318-9274-9b5919d5034a

Lahiru Jayathilake

...

In this part mainly one of the limitations of Patient Matching Module is addressed, which is making comparisons with all of the patient records.

For instance, if we have 10,000 patients in our system and we need to match the patients using first name and the date of birth. Goal is to check for the duplicates among them. If we compare all patients to all the others that is roughly 50 million comparisons ( 10,000 x (10,000 - 1) / 2 ). After couple of days if we run the same match where 90 patients have been added and 10 updated, with the current version it would still carry out the same method of comparison and this time it would be about 51 million comparisons!

In this project a solution is given, where the module performs comparisons only for the added and updated records for that particular strategy. Patient Matching 2.0 has this amazing method to perform this task by making about 1 million [(100 x 99 / 2) + (100 x 9990)] comparisons rather than 51 million of comparisons. Congratulations we saved the valuable time of the module neglecting 50 million comparisons.

User Interface

Image RemovedImage Added

Things to be Highlighted

...

User Interface of a Report

Image RemovedImage Added

Merge Patients

...