You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [CHANGELOG.md](CHANGELOG.md) for version history and [Releases](https://github.com/ImagingDataCommons/idc-claude-skill/releases) for downloads.
46
45
@@ -50,7 +49,7 @@ This skill was created and is maintained by [Andrey Fedorov (@fedorov)](https://
50
49
51
50
For comprehensive documentation about the skill's capabilities, see [SKILL.md](SKILL.md).
52
51
53
-
Development of this skill as part of Imaging Data Commons development has been funded in whole or in part with Federal funds from the National Cancer Institute, National Institutes of Health, under Task Order No. HHSN26110071 under Contract No. HHSN261201500003l.
52
+
Development of this skill as part of Imaging Data Commons development has been funded in whole or in part with Federal funds from the National Cancer Institute, National Institutes of Health, under Task Order No. HHSN26110071 under Contract No. HHSN261201500003I.
54
53
55
54
If you use this skill in your research, please acknowledge IDC by citing the following publication:
Copy file name to clipboardExpand all lines: SKILL.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ name: imaging-data-commons
3
3
description: Query and download public cancer imaging data from NCI Imaging Data Commons using idc-index. Use for accessing large-scale radiology (CT, MR, PET) and pathology datasets for AI training or research. No authentication required. Query by metadata, visualize in browser, check licenses.
4
4
license: This skill is provided under the MIT License. IDC data itself has individual licensing (mostly CC-BY, some CC-NC) that must be respected when using the data.
See `references/clinical_data_guide.md` for detailed workflows including value mapping patterns and joining clinical data with imaging.
259
+
258
260
## Data Access Options
259
261
260
262
| Method | Auth Required | Best For |
@@ -693,14 +695,15 @@ for i in range(0, len(results), batch_size):
693
695
694
696
### 7. Advanced Queries with BigQuery
695
697
696
-
For queries requiring full DICOM metadata, complex JOINs, or clinical data tables, use Google BigQuery. Requires GCP account with billing enabled.
698
+
For queries requiring full DICOM metadata, complex JOINs, clinical data tables, or private DICOM elements, use Google BigQuery. Requires GCP account with billing enabled.
697
699
698
700
**Quick reference:**
699
701
- Dataset: `bigquery-public-data.idc_current.*`
700
702
- Main table: `dicom_all` (combined metadata)
701
703
- Full metadata: `dicom_metadata` (all DICOM tags)
704
+
- Private elements: `OtherElements` column (vendor-specific tags like diffusion b-values)
702
705
703
-
See `references/bigquery_guide.md` for setup, table schemas, query patterns, and cost optimization.
706
+
See `references/bigquery_guide.md` for setup, table schemas, query patterns, private element access, and cost optimization.
704
707
705
708
### 8. Tool Selection Guide
706
709
@@ -1121,6 +1124,8 @@ client.sql_query("""
1121
1124
""")
1122
1125
```
1123
1126
1127
+
See `references/clinical_data_guide.md` for complete patterns including value mapping and patient cohort selection.
1128
+
1124
1129
## Related Skills
1125
1130
1126
1131
The following skills complement IDC workflows for downstream analysis and visualization:
@@ -1154,6 +1159,7 @@ columns = [(c['name'], c['type'], c.get('description', '')) for c in schema['col
1154
1159
1155
1160
### Reference Documentation
1156
1161
1162
+
-**clinical_data_guide.md** - Clinical/tabular data navigation, value mapping, and joining with imaging data
1157
1163
-**cloud_storage_guide.md** - Direct cloud bucket access (S3/GCS), file organization, CRDC UUIDs, versioning, and reproducibility
0 commit comments