jruffle commited on
Commit
be29a5c
·
verified ·
1 Parent(s): 3e178be

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +44 -0
  2. tracerx_vst_counts.parquet +3 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TRACERx Expression Data
2
+
3
+ VST-normalized gene expression data from the TRACERx lung cancer cohort.
4
+
5
+ ## Contents
6
+
7
+ - `tracerx_vst_counts.parquet`: VST-normalized expression matrix (Parquet format)
8
+ - Rows: 20136 genes
9
+ - Columns: 1051 samples
10
+ - Size: 106.0 MB
11
+
12
+ ## Usage
13
+
14
+ ```python
15
+ from huggingface_hub import hf_hub_download
16
+ import pandas as pd
17
+
18
+ # Download the expression data (Parquet - faster)
19
+ local_path = hf_hub_download(
20
+ repo_id="jruffle/tracerx_expression_data",
21
+ filename="tracerx_vst_counts.parquet",
22
+ repo_type="dataset"
23
+ )
24
+
25
+ # Load the data
26
+ expression_df = pd.read_parquet(local_path)
27
+ ```
28
+
29
+ ## Data Format
30
+
31
+ - Index: Gene symbols (gene_id)
32
+ - Columns: Sample IDs
33
+ - Values: VST-normalized expression values
34
+
35
+ ## Why Parquet?
36
+
37
+ Parquet format provides:
38
+ - ~3x smaller file size than CSV
39
+ - ~10-100x faster loading times
40
+ - Native pandas support
41
+
42
+ ## License
43
+
44
+ This data is provided for research purposes as part of the CRUK Datathon 2025.
tracerx_vst_counts.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a6dc714d935fb5765ba9552df49b2f782fa74d1e238134689b61f769ce1b8cf
3
+ size 111147271