alterlab-imaging-data-commons
Installation
SKILL.md
Imaging Data Commons
Overview
Use the idc-index Python package to query and download public cancer imaging data from the National Cancer Institute Imaging Data Commons (IDC). No authentication required for data access.
Current IDC Data Version: v24 (always verify with IDCClient().get_idc_version())
Primary tool: idc-index (GitHub)
CRITICAL - Check package version and upgrade if needed (run this FIRST):
from importlib.metadata import version as _v
from packaging.version import Version
REQUIRED_VERSION = "0.12.3" # Must match metadata.idc-index in this file
installed = _v("idc-index")