...
Warning |
---|
This documentation is for the original TCIA API. Documentation for the current version can be found here |
Summary
This document describes the initial public release of the TCIA programmatic Interface or REST API implementation. This API is designed for use by developers of image analysis and data mining tools to directly query the public resources of TCIA and retrieve information into their applications. The API complements the existing web interface but eliminates the need for users to visit the TCIA web pages to select and download images then upload them into their viewing and analysis applications. The TCIA Programmatic Interface is based on a middleware platform called Project Bindaas, developed by Emory University and uses REST web service technologies.
...
With the exception of the getImage query, all other queries return one of these data formats : CSV,HTML,XML and JSON file with results. The first line of the file contains the names of the columns in the response. Each subsequent line corresponds to one row from the TCIA database. The getImage query returns a zip of the images.
REST API Directory
Query Name | Return Values | Output Format | Query Key 1 | Query Key 2 | Query Key 3 | Query Key 4 | Query Key 5 | Query Key 6 |
---|---|---|---|---|---|---|---|---|
getCollectionValues | Set of all collection names | CSV/HTML/XML/JSON | NA | NA | NA | NA |
getModalityValues | Set of all modality values (CT, MR, ...) filtered by query keys | CSV/HTML/XML/JSON | Collection (O) | BodyPartExamined (O) | Modality (O) | NA |
getBodyPartValues | Set of all body part names filtered by query keys | CSV/HTML/XML/JSON | Collection (O) | BodyPartExamined (O) | Modality (O) | NA |
getManufacturerValues | Set of all manufacturer names filtered by query keys | CSV/HTML/XML/JSON | Collection (O) | BodyPartExamined (O) | Modality (O) | NA |
getPatient | Set of patient objects filtered by query keys | CSV/HTML/XML/JSON | Collection (O) | NA | NA | Na |
getPatientStudy | Set of patient/study objects filtered by query keys | CSV/HTML/XML/JSON | Collection (O) | PatientID (O) | StudyInstanceUID (O) | NA |
getSeries | Set of series objects filtered by query keys | CSV/HTML/XML/JSON | Collection (O) | PatientID (O) | StudyInstanceUID (O) | Modality (O) |
getSeriesSize | Set of total byte size and object count filtered by query key | CSV/HTML/XML/JSON | SeriesInstanceUID (R) | NA | NA | NA |
getImage | Set of images in a zip file | ZIP | SeriesInstanceUID (R) | NA | NA | NA |
Return Values
Collection
An object that represents Collection (project) values.
Attribute | DICOM Tag | Description |
---|---|---|
Collection | NA | A label used to name a set of images collected for a specific trial or other reason. |
Modality
An object that represents Modality values.
Attribute | DICOM Tag | Description |
---|---|---|
Modality | 0008 0060 | Standard DICOM definition |
BodyPartExamined
An object that represents BodyPartExamined values.
Attribute | DICOM Tag | Description |
---|---|---|
BodyPartExamined | 0018 0015 | Standard DICOM definition |
Manufacturer
An object that represents Manufacturer values.
Attribute | DICOM Tag | Description |
---|---|---|
Manufacturer | 0008 0070 | Standard DICOM definition |
Patient
An object that represents one patient.
Attribute | DICOM Tag | Description |
---|---|---|
PatientID | 0010 0020 | Has been de-identified as part of submission process. |
PatientName | 0010 0010 | Has been de-identified as part of submission process. |
PatientBirthDate | 0010 0030 | Has been de-identified (emptied) as part of submission process. |
PatientSex | 0010 0040 | Standard DICOM definition |
EthnicGroup | 0010 2160 | Standard DICOM definition |
Collection | NA | A label used to name a set of images collected for a specific trial or other reason. Assigned during the process of curating the data. |
PatientStudy
An object that represents one DICOM imaging study performed on one patient.
Attribute | DICOM Tag | Description |
---|---|---|
StudyInstanceUID | 0020 000D | Has been de-identified as part of submission process. |
StudyDate | 0008 0020 | Has been de-identified as part of submission process. Longitudinal information is preserved. |
StudyDescription | 0008 1030 | Standard DICOM definition. Has been inspected and cleaned of any PHI |
AdmittingDiagnosesDescription | 0008 1080 | Standard DICOM definition. Has been inspected and cleaned of any PHI |
StudyID | 0020 0010 | Has been de-identified as part of submission process. |
PatientAge | 0010 1010 | Standard DICOM definition |
PatientID | 0010 0020 | Has been de-identified as part of submission process. |
PatientName | 0010 0010 | Has been de-identified as part of submission process. |
PatientBirthDate | 0010 0030 | Has been de-identified (emptied) as part of submission process. |
PatientSex | 0010 0040 | Standard DICOM definition |
EthnicGroup | 0010 2160 | Standard DICOM definition |
Collection | NA | A label used to name a set of images collected for a specific trial or other reason. |
SeriesCount | NA | Computed number of series. |
Series
An object that represents one imaging series.
Attribute | DICOM Tag | Description |
---|---|---|
SeriesInstanceUID | 0020 000E | Has been de-identified as part of submission process. |
StudyInstanceUID | 0020 000D | Has been de-identified as part of submission process. |
Modality | 0008 0060 | Standard DICOM definition |
ProtocolName | 0018 1030 | Standard DICOM definition. Has been inspected and cleaned of any PHI |
SeriesDate | 0008 0021 | Standard DICOM definition |
SeriesDescription | 0008 103E | Standard DICOM definition. Has been inspected and cleaned of any PHI |
BodyPartExamined | 0018 0015 | Entered on a per collection basis using relevant SNOMED terms. |
SeriesNumber | 0020 0011 | Standard DICOM definition |
AnnotationsFlag | NA |
Collection | NA | A label used to name a set of images collected for a specific trial or other reason. |
PatientID | 0010 0020 | Has been de-identified as part of submission process. |
Manufacturer | 0008 0070 | Standard DICOM definition |
ManufacturerModelName | 0008 1090 | Standard DICOM definition |
SoftwareVersions | 0018 1020 | Standard DICOM definition |
ImageCount | NA | Computed number of images in this series. |
SeriesSize
An object that represents set of total byte size and object count filtered by query key SeriesInstanceUID.
Attribute | DICOM Tag | Description |
---|---|---|
TotalSizeInBytes | NA | Total byte size per series |
ObjectCount | NA | Count of total objects per series |
Image
An object that represents set of images in zip file based on SeriesInstanceUID.
Attribute | DICOM Tag | Description |
---|---|---|
NA | NA | Set of images in a zip file |
Production / Test URLs and Test Data
There are two RESTful servers provided by TCIA. A test system is loaded with a small set of known data to allow you to test your applications. The production system is configured to use the full TCIA database. The query format is the same for both systems. The base URLs are:
Type | URL |
---|---|
Production | https://services.cancerimagingarchive.net/services/TCIA/TCIA/query |
Test | https://services-test.cancerimagingarchive.net/services/TCIA/TCIA/query |
...
The test server is loaded with this data:
Collections
Collection |
---|
TCGA-KIRC |
BREAST-DIAGNOSIS |
TCGA-LGG |
CT COLONOGRAPHY |
LIDC-IDRI |
TCGA-GBM |
RIDER Lung PET-CT |
TCGA-OV |
Head-Neck Cetuximab |
TCGA-PRAD |
NSCLC Radiogenomics |
TCGA-BRCA |
RIDER PHANTOM MRI |
TCGA-KIRP |
RIDER PHANTOM PET-CT |
...
PatientStudy
StudyInstanceUID | StudyDate | StudyDescription | AdmittingDiagnosesDescription | StudyID | PatientAge | PatientID | PatientName | PatientBirthDate | PatientSex | EthnicGroup | Collection | SeriesCount |
---|---|---|---|---|---|---|---|---|---|---|---|---|
1.3.6.1.4.1.14519.5.2.1.3344.4004.448358130266483790390581018240 | 1995-02-26 | CT Urogram with 3D | NULL | NULL | NULL | TCGA-CW-6088 | TCGA-CW-6088 | NULL | M | NULL | TCGA-KIRC | 3 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.627577518886153755226383782162 | 2008-10-18 | Digital Right Mammogram Diagnostic | NULL | NULL | 029Y | BreastDx-01-0070 | NULL | NULL | F | NULL | BREAST-DIAGNOSIS | 5 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | 1991-12-07 | FORFILE CD MR ABDOMEN | NULL | NULL | 072Y | TCGA-BP-5198 | TCGA-BP-5198 | NULL | M | NULL | TCGA-KIRC | 8 |
1.3.6.1.4.1.14519.5.2.1.5826.4003.897160909780395368971006445736 | 2002-12-19 | NR MRI BRAIN W/WO | NULL | NULL | 042Y | TCGA-FG-8186 | TCGA-FG-8186 | NULL | F | NULL | TCGA-LGG | 3 |
1.3.6.1.4.1.9328.50.4.10415 | 2000-01-01 | CT SCREENING VIRT COLONOSCOPY | NULL | 1 | 056Y | 1.3.6.1.4.1.9328.50.4.0011 | 1.3.6.1.4.1.9328.50.4.0011 | NULL | M | NULL | CT COLONOGRAPHY | 1 |
1.3.6.1.4.1.14519.5.2.1.6279.6001.627275201192675326215742498371 | 2000-01-01 | NULL | NULL | NULL |
LIDC-IDRI-0077 | NULL | NULL | NULL | NULL | LIDC-IDRI | 1 | ||||||
1.3.6.1.4.1.14519.5.2.1.7695.4001.218361089000532962354851713589 | 2001-06-06 | MSTEALTH | NULL | NULL | 030Y | TCGA-08-0355 | NULL | NULL | F | NULL | TCGA-GBM | 1 |
1.3.6.1.4.1.9328.50.17.171169503015012484365775373347971703543 | 2006-05-07 | NULL | NULL | NULL | 000Y | RIDER-1009463841 | 218236 | NULL | NULL | NULL | RIDER Lung PET-CT | 3 |
1.3.6.1.4.1.14519.5.2.1.7777.4007.207099377675611913572950287222 | 1992-09-01 | CT Chest with | NULL | NULL | 060Y | TCGA-24-1423 | TCGA-24-1423 | NULL | F | NULL | TCGA-OV | 2 |
1.3.6.1.4.1.14519.5.2.1.5099.8010.199920086920823171706454903251 | 1999-08-23 | Neck^HeadNeckPETCT | NULL | NULL | 000D | 0522c0001 | 0522c0001 | NULL | F | NULL | Head-Neck Cetuximab | 1 |
1.3.6.1.4.1.14519.5.2.1.4334.1501.111558925637778258818195924798 | 1991-07-17 | CT CHEST W CONTRAST | NULL | NULL | 062Y | GSM714069 | GSM714069 | NULL | 0 | NULL | NSCLC Radiogenomics | 2 |
1.3.6.1.4.1.14519.5.2.1.9203.4002.259172237572097188128951116391 | 2002-08-10 | NULL | NULL | NULL | 041Y | TCGA-AO-A03V | TCGA-AO-A03V | NULL | F | NULL | TCGA-BRCA | 1 |
1.3.12.2.1107.5.2.31.30165.30000008083115454467100000007 | 2008-08-31 | Physics^EFJ NCI | NULL | 1 | 018Y | ZZ083108C | ZZ RIDER 3 | 1990-01-01 | M | NULL | RIDER PHANTOM MRI | 7 |
1.3.6.1.4.1.14519.5.2.1.8421.4010.194703946276983777721182839151 | 2001-12-12 | MRI ABD W+WO CONT | NULL | NULL | 052Y | TCGA-B9-4115 | TCGA-B9-4115 | NULL | M | NULL | TCGA-KIRP | 1 |
1.2.840.113619.2.55.3.1602280607.497.1169961245.459 | 2007-01-27 | NULL | NULL | 2324 | 000Y | SNMCB04 | SNMCB04 | NULL | NULL | NULL | RIDER PHANTOM PET-CT | 1 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.206552396038536458812411815856 | 2008-09-09 | MRI Right Breast with and without Contrast | NULL | NULL | NULL | BreastDx-01-0070 | NULL | NULL | F | NULL | BREAST-DIAGNOSIS | 2 |
Series
SeriesInstanceUID | StudyInstanceUID | Modality | ProtocolName | SeriesDate | SeriesDescription | BodyPartExamined | SeriesNumber | AnnotationsFlag | Collection | PatientID | Manufacturer | ManufacturerModelName | SoftwareVersions | ImageCount |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1.3.6.1.4.1.14519.5.2.1.3344.4004.135628675449902768248230773668 | 1.3.6.1.4.1.14519.5.2.1.3344.4004.448358130266483790390581018240 | CR | NULL | 1995-02-26 | projection urogram | Kidney | 3002 | NULL | TCGA-KIRC | TCGA-CW-6088 | FUJI PHOTO FILM Co., ltd. | NULL | NULL | 1 |
1.3.6.1.4.1.14519.5.2.1.3344.4004.245916539070518626342817523833 | 1.3.6.1.4.1.14519.5.2.1.3344.4004.448358130266483790390581018240 | CR | NULL | 1995-02-26 | projection urogram | Kidney | 3001 | NULL | TCGA-KIRC | TCGA-CW-6088 | FUJI PHOTO FILM Co., ltd. | NULL | NULL | 1 |
1.3.6.1.4.1.14519.5.2.1.3344.4004.695362687239295078523379159102 | 1.3.6.1.4.1.14519.5.2.1.3344.4004.448358130266483790390581018240 | CR | NULL | 1995-02-26 | projection urogram | Kidney | 3003 | NULL | TCGA-KIRC | TCGA-CW-6088 | FUJI PHOTO FILM Co., ltd. | NULL | NULL | 1 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.116629832395416985379282582747 | 1.3.6.1.4.1.14519.5.2.1.4792.2001.627577518886153755226383782162 | MG | R CC | 2008-10-18 | R CC | BREAST | 1 | NULL | BREAST-DIAGNOSIS | BreastDx-01-0070 | LORAD | Lorad Selenia | AWS:MAMMODROC_3_4_1_8 | 1 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.315277146479798799263416043844 | 1.3.6.1.4.1.14519.5.2.1.4792.2001.627577518886153755226383782162 | MG | R ML | 2008-10-18 | R ML | BREAST | 5 | NULL | BREAST-DIAGNOSIS | BreastDx-01-0070 | LORAD | Lorad Selenia | AWS:MAMMODROC_3_4_1_8 | 1 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.325671494514971413459666872353 | 1.3.6.1.4.1.14519.5.2.1.4792.2001.627577518886153755226383782162 | MG | R LM | 2008-10-18 | R LM | BREAST | 5 | NULL | BREAST-DIAGNOSIS | BreastDx-01-0070 | LORAD | Lorad Selenia | AWS:MAMMODROC_3_4_1_8 | 1 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.455119634607209467900040265161 | 1.3.6.1.4.1.14519.5.2.1.4792.2001.627577518886153755226383782162 | MG | R CC | 2008-10-18 | R CC | BREAST | 1 | NULL | BREAST-DIAGNOSIS | BreastDx-01-0070 | LORAD | Lorad Selenia | AWS:MAMMODROC_3_4_1_8 | 1 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.965121749895519080181571460714 | 1.3.6.1.4.1.14519.5.2.1.4792.2001.627577518886153755226383782162 | MG | R MLO | 2008-10-18 | R MLO | BREAST | 6 | NULL | BREAST-DIAGNOSIS | BreastDx-01-0070 | LORAD | Lorad Selenia | AWS:MAMMODROC_3_4_1_8 | 1 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.261292236871631755539819127331 | 1.3.6.1.4.1.14519.5.2.1.4792.2001.206552396038536458812411815856 | MR | T2W_TSE SENSE | 2008-09-09 | T2W_TSE SENSE | BREAST | 301 | NULL | BREAST-DIAGNOSIS | BreastDx-01-0070 | Philips Medical Systems | Achieva | 2.6.3 | 84 |
1.3.6.1.4.1.14519.5.2.1.4792.2001.619796475178405006273504314352 | 1.3.6.1.4.1.14519.5.2.1.4792.2001.206552396038536458812411815856 | MR | STIR SENSE | 2008-09-09 | STIR SENSE | BREAST | 401 | NULL | BREAST-DIAGNOSIS | BreastDx-01-0070 | Philips Medical Systems | Achieva | 2.6.3 | 84 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.137177099658421704145863895493 | 1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | MR | T2_FASE AX-KID | 1991-12-07 | T2 FASE AX-KID | KIDNEY | 10 | NULL | TCGA-KIRC | TCGA-BP-5198 | TOSHIBA_MEC | MRT200PP3 | V8.01*R242 | 20 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.143287988644147518880117782980 | 1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | MR | T2_FASE COR-KID | 1991-12-07 | T2 FASE COR-KID | KIDNEY | 6 | NULL | TCGA-KIRC | TCGA-BP-5198 | TOSHIBA_MEC | MRT200PP3 | V8.01*R242 | 16 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.197057952797597751215816105842 | 1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | MR | AX T2 FSAT-KID | 1991-12-07 | AX T2 FSAT-KID | KIDNEY | 9 | NULL | TCGA-KIRC | TCGA-BP-5198 | TOSHIBA_MEC | MRT200PP3 | V8.01*R242 | 20 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.197900822168366244860588196227 | 1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | MR | COR T2 FSAT-KID | 1991-12-07 | COR T2 FSAT-KID | KIDNEY | 7 | NULL | TCGA-KIRC | TCGA-BP-5198 | TOSHIBA_MEC | MRT200PP3 | V8.01*R242 | 16 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.307101751442496057217506331577 | 1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | MR | COR LOC | 1991-12-07 | COR LOC | KIDNEY | 1 | NULL | TCGA-KIRC | TCGA-BP-5198 | TOSHIBA_MEC | MRT200PP3 | V8.01*R242 | 5 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.310929325760238460396080803881 | 1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | MR | AX FE IN/OUT PH-KID | 1991-12-07 | AX FE IN/OUT PH-KID | KIDNEY | 8 | NULL | TCGA-KIRC | TCGA-BP-5198 | TOSHIBA_MEC | MRT200PP3 | V8.01*R242 | 40 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.337541698760018003161721441910 | 1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | MR | 2 PLANE LOC | 1991-12-07 | 2 PLANE LOC | KIDNEY | 2 | NULL | TCGA-KIRC | TCGA-BP-5198 | TOSHIBA_MEC | MRT200PP3 | V8.01*R242 | 8 |
1.3.6.1.4.1.14519.5.2.1.9203.4004.867432292739732487344202298452 | 1.3.6.1.4.1.14519.5.2.1.9203.4004.261688224366503947085525116820 | MR | AX T2 FSE-ABDOMEN | 1991-12-07 | AX T2 FSE-ABDOMEN | KIDNEY | 5 | NULL | TCGA-KIRC | TCGA-BP-5198 | TOSHIBA_MEC | MRT200PP3 | V8.01*R242 | 20 |
1.3.6.1.4.1.14519.5.2.1.5826.4003.234440324836586139233458033827 | 1.3.6.1.4.1.14519.5.2.1.5826.4003.897160909780395368971006445736 | MR | localizer | 2002-12-19 | localizer | BRAIN | 1 | NULL | TCGA-LGG | TCGA-FG-8186 | Siemens | Verio | syngo MR B17 | 3 |
1.3.6.1.4.1.14519.5.2.1.5826.4003.280875379440519752922611246013 | 1.3.6.1.4.1.14519.5.2.1.5826.4003.897160909780395368971006445736 | MR | T2 AX | 2002-12-19 | T2 AX | BRAIN | 3 | NULL | TCGA-LGG | TCGA-FG-8186 | Siemens | Verio | syngo MR B17 | 31 |
1.3.6.1.4.1.14519.5.2.1.5826.4003.282485091576025278124985568977 | 1.3.6.1.4.1.14519.5.2.1.5826.4003.897160909780395368971006445736 | MR | T2 COR | 2002-12-19 | T2 COR | BRAIN | 4 | NULL | TCGA-LGG | TCGA-FG-8186 | Siemens | Verio | syngo MR B17 | 40 |
1.3.6.1.4.1.9328.50.4.10416 | 1.3.6.1.4.1.9328.50.4.10415 | CT | VIRTUAL COLON/Abdomen/Hx | NULL | SUPINE | COLON | 271 | NULL | CT COLONOGRAPHY | 1.3.6.1.4.1.9328.50.4.0011 | Philips | Brilliance 40 | 1.2.3 | 575 |
1.3.6.1.4.1.14519.5.2.1.6279.6001.252988052061080251748760161842 | 1.3.6.1.4.1.14519.5.2.1.6279.6001.627275201192675326215742498371 | DX | NULL | 2000-01-01 | NULL | CHEST | 3001583 | NULL | LIDC-IDRI | LIDC-IDRI-0077 | "GE Healthcare" | "Thunder Platform" | DM_Platform_Magic_Release_Patch_1-4.3-2 | 2 |
1.3.6.1.4.1.14519.5.2.1.7695.4001.172073903217368334328101456736 | 1.3.6.1.4.1.14519.5.2.1.7695.4001.218361089000532962354851713589 | MR | NULL | 2001-06-06 | Summary Series | BRAIN | 1102 | NULL | TCGA-GBM | TCGA-08-0355 | GE | SIGNA_1.5T | 9 | 37 |
1.3.6.1.4.1.9328.50.17.109790496340142304700741635171089234345 | 1.3.6.1.4.1.9328.50.17.171169503015012484365775373347971703543 | CT | NULL | 2006-05-07 | CT 2.5mm cb02 | CHEST | 2 | NULL | RIDER Lung PET-CT | RIDER-1009463841 | GE MEDICAL SYSTEMS | Discovery STE | pet_vct_hp.80 | 65 |
1.3.6.1.4.1.9328.50.17.209366194844802036292714836428653144268 | 1.3.6.1.4.1.9328.50.17.171169503015012484365775373347971703543 | PT | NULL | 2006-05-07 | 3D FBP H10 5min cb02 | CHEST | 401 | NULL | RIDER Lung PET-CT | RIDER-1009463841 | GE MEDICAL SYSTEMS | Discovery STE | 41.04 | 47 |
1.3.6.1.4.1.9328.50.17.23371440247832824408105272699654489729 | 1.3.6.1.4.1.9328.50.17.171169503015012484365775373347971703543 | PT | NULL | 2006-05-07 | 5min 3D OSEM 8it28sub 7MM CB02 | CHEST | 402 | NULL | RIDER Lung PET-CT | RIDER-1009463841 | GE MEDICAL SYSTEMS | Discovery STE | 41.04 | 47 |
1.3.6.1.4.1.14519.5.2.1.7777.4007.248574192248637448743886883231 | 1.3.6.1.4.1.14519.5.2.1.7777.4007.207099377675611913572950287222 | CT | 02_CAP_ONERUN | 1992-09-01 | CAP 5.0 B60f | OVARY | 4 | NULL | TCGA-OV | TCGA-24-1423 | SIEMENS | Sensation 64 | syngo CT 2007S | 55 |
1.3.6.1.4.1.14519.5.2.1.7777.4007.287978541705211357222193962912 | 1.3.6.1.4.1.14519.5.2.1.7777.4007.207099377675611913572950287222 | CT | 02_CAP_ONERUN | 1992-09-01 | CAP 5.0 B20f | OVARY | 3 | NULL | TCGA-OV | TCGA-24-1423 | SIEMENS | Sensation 64 | syngo CT 2007S | 129 |
1.3.6.1.4.1.14519.5.2.1.5099.8010.427264300850965737262860055580 | 1.3.6.1.4.1.14519.5.2.1.5099.8010.199920086920823171706454903251 | CT | HeadNeckPETCT | 1999-08-23 | CT 5.0 H30s | HEADNECK | 2 | NULL | Head-Neck Cetuximab | 0522c0001 | SIEMENS | Emotion | VA40C | 113 |
1.3.6.1.4.1.14519.5.2.1.4334.1501.110141171927780819729628223769 | 1.3.6.1.4.1.14519.5.2.1.4334.1501.111558925637778258818195924798 | CT | 5.1 ROUTINE CHEST W/CON | 1991-07-17 | 2.5MM AXIAL CHEST STD ALG. | LUNG | 4 | NULL | NSCLC Radiogenomics | GSM714069 | GE MEDICAL SYSTEMS | LightSpeed VCT | 07MW18.4 | 129 |
1.3.6.1.4.1.14519.5.2.1.4334.1501.146380574988448017464290196017 | 1.3.6.1.4.1.14519.5.2.1.4334.1501.111558925637778258818195924798 | CT | 5.1 ROUTINE CHEST W/CON | 1991-07-17 | SCOUT CHEST | LUNG | 1 | NULL | NSCLC Radiogenomics | GSM714069 | GE MEDICAL SYSTEMS | LightSpeed VCT | 07MW18.4 | 2 |
1.3.6.1.4.1.14519.5.2.1.9203.4002.224379354792331717697796654541 | 1.3.6.1.4.1.14519.5.2.1.9203.4002.259172237572097188128951116391 | MR | BILATERAL BREAST/1 | 2002-08-10 | Localization | BREAST | 1 | NULL | TCGA-BRCA | TCGA-AO-A03V | GE MEDICAL SYSTEMS | SIGNA HDx | 14 | 35 |
1.3.12.2.1107.5.2.31.30165.2008083111550627984708535.0.0.0 | 1.3.12.2.1107.5.2.31.30165.30000008083115454467100000007 | MR | T1 Flip = 2 | 2008-08-31 | T1 Flip = 2 | PHANTOM | 2 | NULL | RIDER PHANTOM MRI | ZZ083108C | SIEMENS | Espree | syngo MR B15 | 12 |
1.3.12.2.1107.5.2.31.30165.200808311155464169208602.0.0.0 | 1.3.12.2.1107.5.2.31.30165.30000008083115454467100000007 | MR | T1 Flip = 5 | 2008-08-31 | T1 Flip = 5 | PHANTOM | 3 | NULL | RIDER PHANTOM MRI | ZZ083108C | SIEMENS | Espree | syngo MR B15 | 12 |
1.3.12.2.1107.5.2.31.30165.2008083111562588769508673.0.0.0 | 1.3.12.2.1107.5.2.31.30165.30000008083115454467100000007 | MR | T1 Flip = 10 | 2008-08-31 | T1 Flip = 10 | PHANTOM | 4 | NULL | RIDER PHANTOM MRI | ZZ083108C | SIEMENS | Espree | syngo MR B15 | 12 |
1.3.12.2.1107.5.2.31.30165.2008083111570538055908740.0.0.0 | 1.3.12.2.1107.5.2.31.30165.30000008083115454467100000007 | MR | T1 Flip = 15 | 2008-08-31 | T1 Flip = 15 | PHANTOM | 5 | NULL | RIDER PHANTOM MRI | ZZ083108C | SIEMENS | Espree | syngo MR B15 | 12 |
1.3.12.2.1107.5.2.31.30165.2008083111574514678808807.0.0.0 | 1.3.12.2.1107.5.2.31.30165.30000008083115454467100000007 | MR | T1 Flip = 20 | 2008-08-31 | T1 Flip = 20 | PHANTOM | 6 | NULL | RIDER PHANTOM MRI | ZZ083108C | SIEMENS | Espree | syngo MR B15 | 12 |
1.3.12.2.1107.5.2.31.30165.2008083111582438586708870.0.0.0 | 1.3.12.2.1107.5.2.31.30165.30000008083115454467100000007 | MR | T1 Flip = 25 | 2008-08-31 | T1 Flip = 25 | PHANTOM | 7 | NULL | RIDER PHANTOM MRI | ZZ083108C | SIEMENS | Espree | syngo MR B15 | 12 |
1.3.12.2.1107.5.2.31.30165.2008083111590425145308940.0.0.0 | 1.3.12.2.1107.5.2.31.30165.30000008083115454467100000007 | MR | T1 Flip = 30 | 2008-08-31 | T1 Flip = 30 | PHANTOM | 8 | NULL | RIDER PHANTOM MRI | ZZ083108C | SIEMENS | Espree | syngo MR B15 | 12 |
1.3.6.1.4.1.14519.5.2.1.8421.4010.291491240485724911561689071181 | 1.3.6.1.4.1.14519.5.2.1.8421.4010.194703946276983777721182839151 | MR | t1_vibe_tra_p2_bh_dixon | 2001-12-12 | t1_vibe_tra_p2_bh_dixon_in_FIL | NULL | 10 | NULL | TCGA-KIRP | TCGA-B9-4115 | SIEMENS | Avanto | syngo MR B15 | 72 |
1.2.840.113619.2.131.1602280607.1169973530.4676 | 1.2.840.113619.2.55.3.1602280607.497.1169961245.459 | PT | SNMphantom3D | 2007-01-27 | 3D FBP H10 5MIN CB04 | PHANTOM | 401 | NULL | RIDER PHANTOM PET-CT | SNMCB04 | GE MEDICAL SYSTEMS | Discovery STE | 41.04 | 47 |
...