CoolFace
Datasetpublic

cBioPortal/datahub

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. How to use Query all mutations of datahub directly in duckdb: SELECT count(distinct (Chromosome, Start_Position… See the full description on the dataset page: https://huggingface.co/datasets/cBioPortal/datahub.

sourceHugging Faceodblupdated 2y agoView on Hugging Face
1likes68downloads
Dataset Card

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.

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')