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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
8
8
## [Unreleased]
9
9
10
+
## [1.3.0] - 2026-02-10
11
+
10
12
### Added
11
13
12
14
- Digital pathology reference guide (`references/digital_pathology_guide.md`) with SM, ANN, and SEG query patterns, join examples, and pathology tool recommendations
@@ -23,13 +25,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
Copy file name to clipboardExpand all lines: SKILL.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@ 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.
|`contrast_index`| 1 row = 1 series with contrast info | fetch_index() | Contrast agent metadata: agent name, ingredient, administration route (CT, MR, PT, XA, RF) |
125
126
126
127
**Auto** = loaded automatically when `IDCClient()` is instantiated
127
128
**fetch_index()** = requires `client.fetch_index("table_name")` to load
@@ -140,7 +141,7 @@ The `idc-index` package provides multiple metadata index tables, accessible via
140
141
|`source_DOI`| index, analysis_results_index | Link by publication DOI |
141
142
|`crdc_series_uuid`| index, prior_versions_index | Link by CRDC unique identifier |
142
143
|`Modality`| index, prior_versions_index | Filter by imaging modality |
143
-
|`SeriesInstanceUID`| index, seg_index, ann_index, ann_group_index| Link segmentation/annotation series to its index metadata |
144
+
|`SeriesInstanceUID`| index, seg_index, ann_index, ann_group_index, contrast_index | Link segmentation/annotation/contrast series to its index metadata |
144
145
|`segmented_SeriesInstanceUID`| seg_index → index | Link segmentation to its source image series (join seg_index.segmented_SeriesInstanceUID = index.SeriesInstanceUID) |
145
146
|`referenced_SeriesInstanceUID`| ann_index → index | Link annotation to its source image series (join ann_index.referenced_SeriesInstanceUID = index.SeriesInstanceUID) |
146
147
@@ -213,7 +214,7 @@ print(client.get_idc_version()) # Should return "v23"
213
214
```
214
215
If you see an older version, upgrade with: `pip install --upgrade idc-index`
215
216
216
-
**Tested with:** idc-index 0.11.8 (IDC data version v23)
217
+
**Tested with:** idc-index 0.11.9 (IDC data version v23)
Copy file name to clipboardExpand all lines: references/digital_pathology_guide.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Digital Pathology Guide for IDC
2
2
3
-
**Tested with:** IDC data version v23, idc-index 0.11.8
3
+
**Tested with:** IDC data version v23, idc-index 0.11.9
4
4
5
5
For general IDC queries and downloads, use `idc-index` (see main SKILL.md). This guide covers slide microscopy (SM) imaging, microscopy bulk simple annotations (ANN), and segmentations (SEG) in the context of digital pathology in IDC.
Copy file name to clipboardExpand all lines: references/index_tables_guide.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Index Tables Guide for IDC
2
2
3
-
**Tested with:** idc-index 0.11.8 (IDC data version v23)
3
+
**Tested with:** idc-index 0.11.9 (IDC data version v23)
4
4
5
5
This guide covers the structure and access patterns for IDC index tables: programmatic schema discovery, DataFrame access, and join column references. For the overview of available tables and their purposes, see the "Index Tables" section in the main SKILL.md.
6
6
@@ -124,6 +124,7 @@ Use this table to identify join columns between index tables. Always call `clien
Copy file name to clipboardExpand all lines: references/sql_patterns.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# SQL Query Patterns for IDC
2
2
3
-
**Tested with:** idc-index 0.11.8 (IDC data version v23)
3
+
**Tested with:** idc-index 0.11.9 (IDC data version v23)
4
4
5
5
Quick reference for common SQL query patterns when working with IDC data. For detailed examples with context, see the "Core Capabilities" section in the main SKILL.md.
Copy file name to clipboardExpand all lines: references/use_cases.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Common Use Cases for IDC
2
2
3
-
**Tested with:** idc-index 0.11.8 (IDC data version v23)
3
+
**Tested with:** idc-index 0.11.9 (IDC data version v23)
4
4
5
5
This guide provides complete end-to-end workflow examples for common IDC use cases. Each use case demonstrates the full workflow from query to download with best practices.
0 commit comments