Downloading Studies (DICOMS) from IDC which is not the current one - paying customer

Hi,
I have a paying profile.
I am having a research on brain MRI related to stroke.
I used BigQuery and ran a query on IDC_v10 using 'study description has %stroke% and gladly found a group of studies.
The access to all of them seems to be ‘limited’ and they are all located in gs://idc-open-idc.
How can I , as a paying account, access those studies and download them ?

Thanks in advance

Tomer Braier

I am not sure what you are referring to, since IDC does not have a concept of a “paying profile”. All of the data we are hosting is available to anyone, without requiring any profile or login, and without charge.

I confirm that running the query below there is one study that meets the search criteria.

SELECT
  DISTINCT(collection_id),
  StudyInstanceUID,
  Modality
FROM
  `bigquery-public-data.idc_v10.dicom_all`
WHERE
  LOWER(StudyDescription) LIKE "%stroke%"

The study identified belongs to the TCGA-GBM collection, which was ingested from TCIA. The images in that collections could potentially be used to reconstruct faces, and because of that it was pulled from public access by TCIA. You cannot download those images not because of any limitations of your profile, but because those files have been removed from the public buckets (this happened years ago).

You can check out the TCGA-GBM collection page referenced above for more details about access to that dataset.