0

I'm using GCP and I'm new to Healthcare.

I want to convert HL7 V2 messages to HL7 FHIR messages. Google shared an open source solution for this : https://github.com/GoogleCloudPlatform/healthcare-data-harmonization-dataflow

But I want to be able to convert these messages one by one, as they arrive. Probably using a Cloud Function.

Is there any way I can achieve that ?

cuzureau
  • 330
  • 2
  • 17

1 Answers1

1

With some quick searching, I was able to find this documentation

DIGI Byte
  • 4,225
  • 1
  • 12
  • 20
  • Interresting link but how can I use this combined with GCP. I cannot find any informations on how to use their project https://github.com/HL7/v2-to-fhir/. – cuzureau May 20 '21 at 15:35
  • GCP have several solutions than can process your needs, the easiest is Cloud Functions which requires a project created. from there you can look at 'getting started' guides for your preferred language which should have everything documented for your needs https://cloud.google.com/functions/docs/quickstarts – DIGI Byte May 20 '21 at 21:46
  • 1
    google has some open source utilities for v2 to fhir conversion - not sure if any are integrated into GCP services or not. See : https://github.com/GoogleCloudPlatform/healthcare-data-harmonization - EDIT: look under the mapping_configs folder for the conversion mappings that are possible – crig Aug 27 '21 at 20:55