File size: 710 Bytes
fb3a8aa 6e9ae27 8fd3b30 6e9ae27 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ---
license: odbl
---
**WARNING ⚠️: Accessing datahub data via hugging face is still under construction (use https://github.com/cbioPortal/datahub instead).**
# cBioPortal Datahub
These are parquet files generated from https://github.com/cBioPortal/datahub. It combines all studies' sample, patient, and mutation data into parquet files. They were generated using [cbiohubpy](https://github.com/cBioPortal/cbiohubpy).
## How to use
Query all mutations of datahub directly in `duckdb`:
```
SELECT count(distinct (Chromosome, Start_Position, End_Position, Reference_Allele, Tumor_Seq_Allele1, Tumor_Seq_Allele2))
FROM read_parquet('hf://datasets/cBioPortal/datahub/data/combined_mutations.parquet')
``` |