Questions tagged [google-healthcare-api]

30 questions
5
votes
3 answers

Using Google fit API in Flutter

I need my app to read step count from Google Fit. I'm using health 3.05 package. For now I copied the example code to see if it works and unfortunately it's not. Of course I did every step from this packge readme. I set up OAuth2 Client ID, I…
Lava
  • 108
  • 2
  • 9
2
votes
2 answers

GCP FHIR viewer does not show data

I am trying to implement GCP FHIR store. Like it says on the GCP documnentation, I should be able to see data when I click the resource type. However, I see 18 data exists at the pagination section at the the bottom, but data does not show. I am…
1
vote
1 answer

Googe Cloud Healthcare api: How can I get a list of all the datasets with the names of data stores in each of them?

I am using the Google cloud healthcare api to store dicom images. I need a way to fetch a list of all the dataset in a project with names of all the data stores in each dataset. so possible output would look like this: { dataset1: [ "dataStoreA",…
1
vote
2 answers

Using Google Cloud Natural Language API with Healthcare Content

I am trying to use the Node.js SDK for the Natural Language API (@google-cloud/language). I can successfully analyze the entities for a string as per the docs. What I want to do is analyze the same string but using the Healthcare Natural Language…
1
vote
1 answer

Custom resource type google cloud healthcare api fhir

We have developed a custom FHIR resource type called VacancyRequest to be used for interoperability between workforce management systems. Im trying to understand if the google cloud healthcase api FHIR supports custom resource types or only…
Skygge
  • 33
  • 4
1
vote
1 answer

Google Cloud Healthcare API search by date with time zone on FHIR resource returns error

I'm using Google Healthcare API and trying to search a FHIR resource by date with time zone, like example…
0
votes
0 answers

Is it possible to determine relationships between medical terms in Google Cloud Healthcare API?

I am working on a research project and I have come to a point where I need to determine if elements of a patient's medical record match criteria outlined in specific treatment guidelines. I am very new to NLP, but it seems like this is not a common…
JTris
  • 11
  • 1
0
votes
1 answer

Google Healthcare API: how to get Pub/Sub notification when DICOM instance is deidentified

I am working on Cloud Run service which call API to deidentify a DICOM store. In my code I did following (using node.js library API): Create a "destination DICOM store" with a specific Pub/Sub topic "InstanceDeidentifiedEvent" for notification by…
0
votes
2 answers

filter GCP FHIR QuestionnaireResponse resources by a linkId

I'm Trying to filter the GCP healthcare Fhir QuestionnaireResponse by specific linkId. I have tried following queries in GCP FHIR…
0
votes
2 answers

Google Healthcare API Nodejs - Filter Appointment using start and end date

I cannot filter an Appointment from start and end date using the google healthcare API. I am trying to recreate the query below: Appointment?date=ge2023-02-03T04:00:00.000Z&date=le2023-02-05T04:00:00.000Z This is my javascript code using the…
0
votes
1 answer

Authentication for using Google Cloud Platform API through Google Colab

I am trying to use the Healthcare API, specifically the Healthcare Natural Language API for which there is this tutorial as well as this other one The tutorial outlines how to run the API on a string; I've been tasked with figuring out how to make…
0
votes
0 answers

How to uploaded multiple files to Google cloud bucket and validate them efficiently?

I have a DICOM viewer application that allows users to upload DICOM studies (500MB - 3GB in size). Each study could contain 200-2000 individual DICOM files. I allow users to directly upload these DICOM studies to a Google Cloud Storage bucket that…
0
votes
1 answer

Google Healthcare NLP API Batch Processing

I know we can process text using google healthcare API. There is a limit to this text. So I want to know if is there a way to process large-size clinical data(in GB or MB) using google healthcare NLP API. All the examples available are for single…
0
votes
0 answers

Failed to de-identify patient name in DICOM tag (0010, 0010) by calling API "deidentify()" in library @googleapis/healthcare

I am working on a Cloud service for de-identifying DICOM data in a Google Healthcare DICOM store (not DICOM set). I want to replace patient name (value in DICOM tag (0010, 0010)) with a special char (such as '*') or with the name of the value's…
GaryY
  • 1
0
votes
1 answer

Allowing client to uploading large number of files to cloud storage bucket

I have a React web application in which I allow users to upload DICOM files to Google Healthcare API. The current implementation is that the files first gets uploaded to my back-end server which uploads them to Healthcare API. I am allowing users to…
1
2