cmatkhan commited on
Commit
0c06749
·
verified ·
1 Parent(s): 08f5bf1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +105 -69
README.md CHANGED
@@ -16,10 +16,6 @@ tags:
16
  pretty_name: "Hughes 2006 Yeast Transcription Factor Perturbation Dataset"
17
  size_categories:
18
  - 100K<n<1M
19
- task_categories:
20
- - other
21
- source_datasets:
22
- - original
23
  configs:
24
  - config_name: metadata
25
  description: Transcription factor metadata including essentiality and QC status
@@ -30,87 +26,127 @@ configs:
30
  path: metadata.parquet
31
  dataset_info:
32
  features:
33
- - name: regulator_locus_tag
34
- dtype: string
35
- description: Systematic gene name (ORF identifier) of the transcription factor
36
- - name: regulator_symbol
37
- dtype: string
38
- description: Standard gene symbol of the transcription factor
39
- - name: found_domain
40
- dtype: string
41
- description: Identified DNA-binding domain(s) or protein family classification
42
- - name: sgd_description
43
- dtype: string
44
- description: Functional description from Saccharomyces Genome Database (SGD)
45
- - name: essential
46
- dtype: bool
47
- description: Boolean indicating whether the gene is essential for viability
48
- - name: oe_passed_qc
49
- dtype: bool
50
- description: Boolean indicating whether overexpression experiments passed quality control
51
- - name: del_passed_qc
52
- dtype: bool
53
- description: Boolean indicating whether deletion experiments passed quality control
 
 
 
 
 
 
54
 
55
  - config_name: overexpression
56
  description: Overexpression perturbation normalized log2 fold changes
57
  dataset_type: annotated_features
 
58
  data_files:
59
- - split: train
60
  path: overexpression.parquet
61
  dataset_info:
62
  features:
63
- - name: regulator_locus_tag
64
- dtype: string
65
- description: Systematic gene name (ORF identifier) of the perturbed transcription factor
66
- - name: regulator_symbol
67
- dtype: string
68
- description: Standard gene symbol of the perturbed transcription factor
69
- - name: target_locus_tag
70
- dtype: string
71
- description: Systematic gene name (ORF identifier) of the target gene measured
72
- - name: target_symbol
73
- dtype: string
74
- description: Standard gene symbol of the target gene measured
75
- - name: dye_plus
76
- dtype: float64
77
- description: Normalized log2 fold change for positive (+) dye orientation
78
- - name: dye_minus
79
- dtype: float64
80
- description: Normalized log2 fold change for negative (-) dye orientation
81
- - name: mean_norm_log2fc
82
- dtype: float64
83
- description: Average log2 fold change across dye orientations
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
 
85
  - config_name: knockout
86
  description: Deletion/knockout perturbation normalized log2 fold changes
87
  dataset_type: annotated_features
 
88
  data_files:
89
  - split: train
90
  path: knockout.parquet
91
  dataset_info:
92
  features:
93
- - name: regulator_locus_tag
94
- dtype: string
95
- description: Systematic gene name (ORF identifier) of the perturbed transcription factor
96
- - name: regulator_symbol
97
- dtype: string
98
- description: Standard gene symbol of the perturbed transcription factor
99
- - name: target_locus_tag
100
- dtype: string
101
- description: Systematic gene name (ORF identifier) of the target gene measured
102
- - name: target_symbol
103
- dtype: string
104
- description: Standard gene symbol of the target gene measured
105
- - name: dye_plus
106
- dtype: float64
107
- description: Normalized log2 fold change for positive (+) dye orientation
108
- - name: dye_minus
109
- dtype: float64
110
- description: Normalized log2 fold change for negative (-) dye orientation
111
- - name: mean_norm_log2fc
112
- dtype: float64
113
- description: Average log2 fold change across dye orientations
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
  ---
115
  # Hughes 2006
116
 
@@ -214,4 +250,4 @@ WHERE regulator_locus_tag = 'CST6'
214
 
215
  result = conn.execute(query, [parquet_path]).fetchall()
216
  print(f"Found {len(result)} rows for CST6")
217
- ```
 
16
  pretty_name: "Hughes 2006 Yeast Transcription Factor Perturbation Dataset"
17
  size_categories:
18
  - 100K<n<1M
 
 
 
 
19
  configs:
20
  - config_name: metadata
21
  description: Transcription factor metadata including essentiality and QC status
 
26
  path: metadata.parquet
27
  dataset_info:
28
  features:
29
+ - name: sample_id
30
+ dtype: integer
31
+ description: >-
32
+ unique identifier for a specific sample. The sample ID identifies a unique regulator_locus_tag
33
+ and can be used to join the metadata to the other datasets in this repo
34
+ - name: regulator_locus_tag
35
+ dtype: string
36
+ role: identifier
37
+ description: Systematic gene name (ORF identifier) of the transcription factor
38
+ - name: regulator_symbol
39
+ dtype: string
40
+ description: Standard gene symbol of the transcription factor
41
+ - name: found_domain
42
+ dtype: string
43
+ description: Identified DNA-binding domain(s) or protein family classification
44
+ - name: sgd_description
45
+ dtype: string
46
+ description: Functional description from Saccharomyces Genome Database (SGD)
47
+ - name: essential
48
+ dtype: bool
49
+ description: Boolean indicating whether the gene is essential for viability
50
+ - name: oe_passed_qc
51
+ dtype: bool
52
+ description: Boolean indicating whether overexpression experiments passed quality control
53
+ - name: del_passed_qc
54
+ dtype: bool
55
+ description: Boolean indicating whether deletion experiments passed quality control
56
 
57
  - config_name: overexpression
58
  description: Overexpression perturbation normalized log2 fold changes
59
  dataset_type: annotated_features
60
+ applies_to: metadata
61
  data_files:
62
+ - split: train
63
  path: overexpression.parquet
64
  dataset_info:
65
  features:
66
+ - name: sample_id
67
+ dtype: integer
68
+ description: >-
69
+ unique identifier for a specific sample. The sample ID identifies a unique regulator_locus_tag
70
+ and can be used to join to the other datasets in this repo, including the metadata
71
+ - name: regulator_locus_tag
72
+ dtype: string
73
+ role: identifier
74
+ description: Systematic gene name (ORF identifier) of the perturbed transcription factor
75
+ - name: regulator_symbol
76
+ dtype: string
77
+ description: Standard gene symbol of the perturbed transcription factor
78
+ - name: target_locus_tag
79
+ dtype: string
80
+ role: identifier
81
+ description: Systematic gene name (ORF identifier) of the target gene measured
82
+ - name: target_symbol
83
+ dtype: string
84
+ description: Standard gene symbol of the target gene measured
85
+ - name: dye_plus
86
+ dtype: float64
87
+ role: measurement
88
+ description: >-
89
+ Normalized log2 fold change for positive (+) dye orientation.
90
+ Positive values indicate upregulation in response to overexpression.
91
+ - name: dye_minus
92
+ dtype: float64
93
+ role: measurement
94
+ description: >-
95
+ Normalized log2 fold change for negative (-) dye orientation.
96
+ Positive values indicate upregulation in response to overexpression.
97
+ - name: mean_norm_log2fc
98
+ dtype: float64
99
+ role: measurement
100
+ description: >-
101
+ Average log2 fold change across dye orientations, providing a dye-independent
102
+ estimate of gene expression change upon transcription factor overexpression.
103
 
104
  - config_name: knockout
105
  description: Deletion/knockout perturbation normalized log2 fold changes
106
  dataset_type: annotated_features
107
+ applies_to: metadata
108
  data_files:
109
  - split: train
110
  path: knockout.parquet
111
  dataset_info:
112
  features:
113
+ - name: sample_id
114
+ dtype: integer
115
+ description: >-
116
+ unique identifier for a specific sample. The sample ID identifies a unique regulator_locus_tag
117
+ and can be used to join to the other datasets in this repo, including the metadata
118
+ - name: regulator_locus_tag
119
+ dtype: string
120
+ role: identifier
121
+ description: Systematic gene name (ORF identifier) of the perturbed transcription factor
122
+ - name: regulator_symbol
123
+ dtype: string
124
+ description: Standard gene symbol of the perturbed transcription factor
125
+ - name: target_locus_tag
126
+ dtype: string
127
+ role: identifier
128
+ description: Systematic gene name (ORF identifier) of the target gene measured
129
+ - name: target_symbol
130
+ dtype: string
131
+ description: Standard gene symbol of the target gene measured
132
+ - name: dye_plus
133
+ dtype: float64
134
+ role: measurement
135
+ description: >-
136
+ Normalized log2 fold change for positive (+) dye orientation.
137
+ Positive values indicate upregulation in response to deletion.
138
+ - name: dye_minus
139
+ dtype: float64
140
+ role: measurement
141
+ description: >-
142
+ Normalized log2 fold change for negative (-) dye orientation.
143
+ Positive values indicate upregulation in response to deletion.
144
+ - name: mean_norm_log2fc
145
+ dtype: float64
146
+ role: measurement
147
+ description: >-
148
+ Average log2 fold change across dye orientations, providing a
149
+ dye-independent estimate of gene expression change upon transcription factor deletion.
150
  ---
151
  # Hughes 2006
152
 
 
250
 
251
  result = conn.execute(query, [parquet_path]).fetchall()
252
  print(f"Found {len(result)} rows for CST6")
253
+ ```