cmatkhan commited on
Commit
a3dc399
·
verified ·
1 Parent(s): aa8cda0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +104 -107
README.md CHANGED
@@ -1,107 +1,104 @@
1
- ---
2
- license: mit
3
- language:
4
- - en
5
- tags:
6
- - biology
7
- - genomics
8
- - yeast
9
- - transcription-factors
10
- - gene-expression
11
- - perturbation-screen
12
- - overexpression
13
- - knockout
14
- - microarray
15
- - functional-genomics
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
- dataset_info:
24
- features:
25
- - name: regulator_locus_tag
26
- dtype: string
27
- description: Systematic gene name (ORF identifier) of the perturbed transcription factor
28
- - name: regulator_symbol
29
- dtype: string
30
- description: Standard gene symbol of the perturbed transcription factor
31
- - name: target_locus_tag
32
- dtype: string
33
- description: Systematic gene name (ORF identifier) of the target gene measured
34
- - name: target_symbol
35
- dtype: string
36
- description: Standard gene symbol of the target gene measured
37
- - name: dye_plus
38
- dtype: float
39
- description: Normalized log2 fold change for positive (+) dye orientation
40
- - name: dye_minus
41
- dtype: float
42
- description: Normalized log2 fold change for negative (-) dye orientation
43
- - name: mean_norm_log2fc
44
- dtype: float
45
- description: Average log2 fold change across dye orientations; 0 when orientations have opposite signs, single value when only one orientation available
46
- configs:
47
- - config_name: metadata
48
- description: Transcription factor metadata including essentiality and QC status
49
- default: true
50
- data_files:
51
- - split: train
52
- path: metadata.parquet
53
- - config_name: overexpression
54
- description: Overexpression perturbation normalized log2 fold changes
55
- data_files:
56
- - split: train
57
- path: overexpression.parquet
58
- - config_name: knockout
59
- description: Deletion/knockout perturbation normalized log2 fold changes
60
- data_files:
61
- - split: train
62
- path: knockout.parquet
63
- ---
64
- # Hughes 2006
65
-
66
- This data is parsed from data presented in this paper:
67
-
68
- https://www.pnas.org/doi/10.1073/pnas.0605140103
69
-
70
- The data is made available by the author at:
71
-
72
- https://hugheslab.ccbr.utoronto.ca/supplementary-data/yeastTF/
73
-
74
- and on NCBI with accession GSE5499. However, I used the data provided by the author above.
75
-
76
- Details on my parsing can be found in `scripts/`. The gene features are from
77
- BrentLab/yeast_genome_resources
78
-
79
-
80
- ## Data
81
-
82
- `overexpression.parquet` and `knockout.parquet` have the same structure
83
-
84
- | Field | Description |
85
- |-----------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
86
- | `regulator_locus_tag` | Systematic gene name (ORF identifier) of the perturbed transcription factor |
87
- | `regulator_symbol` | Standard gene symbol of the perturbed transcription factor |
88
- | `target_locus_tag` | Systematic gene name (ORF identifier) of the target gene measured |
89
- | `target_symbol` | Standard gene symbol of the target gene measured |
90
- | `dye_plus` | Normalized log2 fold change for positive (+) dye orientation |
91
- | `dye_minus` | Normalized log2 fold change for negative (-) dye orientation |
92
- | `mean_norm_log2fc` | Average log2 fold change across dye orientations; 0 when orientations have opposite signs, single value when only one orientation available |
93
-
94
- `metadata.parquet` contains transcription factor information
95
-
96
- | Field | Description |
97
- |-----------------------|-------------------------------------------------------------------------------------------------------------------------|
98
- | `regulator_locus_tag` | Systematic gene name (ORF identifier) of the transcription factor |
99
- | `regulator_symbol` | Standard gene symbol of the transcription factor |
100
- | `found_domain` | Identified DNA-binding domain(s) or protein family classification |
101
- | `sgd_description` | Functional description from Saccharomyces Genome Database (SGD) |
102
- | `essential` | Boolean indicating whether the gene is essential for viability |
103
- | `oe_passed_qc` | Boolean indicating whether overexpression experiments passed quality control |
104
- | `del_passed_qc` | Boolean indicating whether deletion experiments passed quality control |
105
-
106
-
107
- **Dataset Author and Contact**: Chase Mateusiak [@cmatKhan](https://github.com/cmatkhan/)
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ tags:
6
+ - biology
7
+ - genomics
8
+ - yeast
9
+ - transcription-factors
10
+ - gene-expression
11
+ - perturbation-screen
12
+ - overexpression
13
+ - knockout
14
+ - microarray
15
+ - functional-genomics
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
+ dataset_info:
24
+ features:
25
+ - name: regulator_locus_tag
26
+ dtype: string
27
+ description: Systematic gene name (ORF identifier) of the perturbed transcription factor
28
+ - name: regulator_symbol
29
+ dtype: string
30
+ description: Standard gene symbol of the perturbed transcription factor
31
+ - name: target_locus_tag
32
+ dtype: string
33
+ description: Systematic gene name (ORF identifier) of the target gene measured
34
+ - name: target_symbol
35
+ dtype: string
36
+ description: Standard gene symbol of the target gene measured
37
+ - name: dye_plus
38
+ dtype: float
39
+ description: Normalized log2 fold change for positive (+) dye orientation
40
+ - name: dye_minus
41
+ dtype: float
42
+ description: Normalized log2 fold change for negative (-) dye orientation
43
+ - name: mean_norm_log2fc
44
+ dtype: float
45
+ description: Average log2 fold change across dye orientations; 0 when orientations have opposite signs, single value when only one orientation available
46
+ configs:
47
+ - config_name: metadata
48
+ description: Transcription factor metadata including essentiality and QC status
49
+ default: true
50
+ data_files:
51
+ - split: train
52
+ path: metadata.parquet
53
+ - config_name: overexpression
54
+ description: Overexpression perturbation normalized log2 fold changes
55
+ data_files:
56
+ - split: train
57
+ path: overexpression.parquet
58
+ - config_name: knockout
59
+ description: Deletion/knockout perturbation normalized log2 fold changes
60
+ data_files:
61
+ - split: train
62
+ path: knockout.parquet
63
+ ---
64
+ # Hughes 2006
65
+
66
+ This data is parsed from data presented in this paper:
67
+
68
+ https://www.pnas.org/doi/10.1073/pnas.0605140103
69
+
70
+ The data is made [available by the author](https://hugheslab.ccbr.utoronto.ca/supplementary-data/yeastTF/) and on
71
+ NCBI with accession [GSE5499](https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE5499).
72
+ I used the data provided by the author.
73
+
74
+ Details on my parsing can be found in `scripts/`. The gene features are from
75
+ BrentLab/yeast_genome_resources
76
+
77
+ ## Data
78
+
79
+ `overexpression.parquet` and `knockout.parquet` have the same structure
80
+
81
+ | Field | Description |
82
+ |-----------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
83
+ | `regulator_locus_tag` | Systematic gene name (ORF identifier) of the perturbed transcription factor |
84
+ | `regulator_symbol` | Standard gene symbol of the perturbed transcription factor |
85
+ | `target_locus_tag` | Systematic gene name (ORF identifier) of the target gene measured |
86
+ | `target_symbol` | Standard gene symbol of the target gene measured |
87
+ | `dye_plus` | Normalized log2 fold change for positive (+) dye orientation |
88
+ | `dye_minus` | Normalized log2 fold change for negative (-) dye orientation |
89
+ | `mean_norm_log2fc` | Average log2 fold change across dye orientations; 0 when orientations have opposite signs, single value when only one orientation available |
90
+
91
+ `metadata.parquet` contains transcription factor information
92
+
93
+ | Field | Description |
94
+ |-----------------------|-------------------------------------------------------------------------------------------------------------------------|
95
+ | `regulator_locus_tag` | Systematic gene name (ORF identifier) of the transcription factor |
96
+ | `regulator_symbol` | Standard gene symbol of the transcription factor |
97
+ | `found_domain` | Identified DNA-binding domain(s) or protein family classification |
98
+ | `sgd_description` | Functional description from Saccharomyces Genome Database (SGD) |
99
+ | `essential` | Boolean indicating whether the gene is essential for viability |
100
+ | `oe_passed_qc` | Boolean indicating whether overexpression experiments passed quality control |
101
+ | `del_passed_qc` | Boolean indicating whether deletion experiments passed quality control |
102
+
103
+
104
+ **Dataset Author and Contact**: Chase Mateusiak [@cmatKhan](https://github.com/cmatkhan/)