Datasets:
Fix formatting for README.md
Browse files
README.md
CHANGED
@@ -22,14 +22,12 @@ enabling insights into the principles influencing co-expression. Overall, co-exp
|
|
22 |
is a powerful tool for uncovering gene function, and decreases the experimental tests
|
23 |
needed to identify functions for currently under-annotated genes.
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
Data for
|
28 |
|
29 |
TR O'Meara, MJ O'Meara, M Sphere, 2020
|
30 |
DeORFanizing Candida albicans Genes using Co-Expression
|
31 |
|
32 |
-
Code available at
|
33 |
http://github.com/momeara/CalCEN
|
34 |
|
35 |
|
@@ -37,203 +35,234 @@ http://github.com/momeara/CalCEN
|
|
37 |
|
38 |
|
39 |
## Files ##
|
40 |
-
chromsome_features.tsv
|
41 |
-
- Candida albicans
|
42 |
-
- primary key: feature_name
|
43 |
-
- URL: http://www.candidagenome.org/download/chromosomal_feature_files/C_albicans_SC5314/C_albicans_SC5314_A22_current_chromosomal_feature.tab
|
44 |
-
- tab separated table with 13,281 rows
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
|
|
|
|
|
|
71 |
- foreign keys:
|
72 |
-
- feature_name -> chromosome_features.feature_name
|
73 |
-
- tab separated table with 6,226 row
|
74 |
-
|
|
|
|
|
|
|
|
|
75 |
|
76 |
-
expression_runs.tsv
|
77 |
- Curated set of RNA-seq runs used in this study
|
78 |
- Collected from NCBI SRA
|
79 |
-
- primary key: run_accession
|
80 |
-
- tab separated table with 853 rows
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
|
|
|
|
128 |
- gene by RNA-seq run expression levels
|
129 |
-
- primary key: gene_id
|
130 |
- foreign keys:
|
131 |
-
- gene_id -> genes.feature_name
|
132 |
-
- run_accession -> expression_runs.run_accession
|
133 |
- The FPKM column represents the per-gene, per-run expression level
|
134 |
-
- tab separated table with 8,710,174 rows
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
|
|
|
|
|
|
147 |
- Co-expression network
|
148 |
-
- primary key: feature_name_1
|
149 |
- foreign keys:
|
150 |
-
- feature_name_1 -> genes.feature_name
|
151 |
-
- feature_name_2 -> genes.feature_name
|
152 |
- score represents the scaled rank of the association between genes among
|
153 |
all gene pairs.
|
154 |
-
- score >= .99 is the default threshold for a significant association
|
155 |
-
- tab separated table with 38,763,076 rows
|
156 |
-
|
157 |
-
|
158 |
-
|
|
|
|
|
|
|
159 |
|
160 |
-
blastp_network.tsv
|
161 |
- blastp sequence similarity network
|
162 |
-
- primary key: feature_name_1
|
163 |
- foreign keys:
|
164 |
-
- feature_name_1 -> genes.feature_name
|
165 |
-
- feature_name_2 -> genes.feature_name
|
166 |
- score representes the scaled rank of the blastp Z-score among
|
167 |
-
all significant gene pair associations (i.e. missing -> score = 0).
|
168 |
-
- tab separated table with 112,129 rows
|
169 |
-
|
170 |
-
|
171 |
-
|
|
|
|
|
|
|
172 |
|
173 |
-
sac_gene.tsv
|
174 |
- genetic associations between orthologous Sac genes Network
|
175 |
-
- primary key: feature_name_1
|
176 |
- foreign keys:
|
177 |
-
- feature_name_1 -> genes.feature_name
|
178 |
-
- feature_name_2 -> genes.feature_name
|
179 |
- score represents the scaled rank of the the spearman correlation between
|
180 |
between binary genetic association collected from BioGRID between orthologous genes
|
181 |
from sac (higher is more siginficant)
|
182 |
-
- tab separated table with 38,763,076 rows
|
183 |
-
|
184 |
-
|
185 |
-
|
|
|
|
|
|
|
186 |
|
187 |
-
sac_gene.tsv
|
188 |
- physical protein-protein interaction between orthologous Sac genes Network
|
189 |
-
- primary key: feature_name_1
|
190 |
- foreign keys:
|
191 |
-
- feature_name_1 -> genes.feature_name
|
192 |
-
- feature_name_2 -> genes.feature_name
|
193 |
- score represents the scaled rank of the the extended binary network
|
194 |
between binary genetic association collected from BioGRID between orthologous genes
|
195 |
from sac (higher is more siginficant).
|
196 |
-
- tab separated table with 14,671,296 rows and columns
|
197 |
-
|
198 |
-
|
199 |
-
|
|
|
|
|
|
|
200 |
|
201 |
-
yeast_net_network.tsv
|
202 |
- YeastNet between orthologous Sac genes network
|
203 |
-
- primary key: feature_name_1
|
204 |
- foreign keys:
|
205 |
-
- feature_name_1 -> genes.feature_name
|
206 |
-
- feature_name_2 -> genes.feature_name
|
207 |
- score is taken directly from the YeastNet network
|
208 |
-
- tab separated table with 425,792 rows
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
|
|
|
|
213 |
|
214 |
-
go_annotations.tsv
|
215 |
- GO annotations from Candida Genome Database collected 12-Jun 2018
|
216 |
-
- URL: http://www.candidagenome.org/download/go/gene_association.cgd.gz
|
217 |
-
- primary key: feature_name
|
218 |
- foreign keys:
|
219 |
-
- feature_name -> genes.feature_name
|
220 |
- values exclude NOT annotations and are propagated up the ontological hierarchy
|
221 |
-
- tab separated table with 29,159 rows
|
222 |
-
|
223 |
-
|
|
|
|
|
|
|
224 |
|
225 |
-
gba_summary.tsv
|
226 |
- Summary of guilt-by-association gene-function prediction
|
227 |
-
- primary key: anno_id
|
228 |
-
- anno_id in [all, MF, BB, CC]
|
229 |
-
- network_id is a set of networks ids separated by '|'
|
230 |
-
- auroc_mean
|
231 |
-
|
232 |
-
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
|
|
|
|
|
22 |
is a powerful tool for uncovering gene function, and decreases the experimental tests
|
23 |
needed to identify functions for currently under-annotated genes.
|
24 |
|
25 |
+
Reference:
|
|
|
|
|
26 |
|
27 |
TR O'Meara, MJ O'Meara, M Sphere, 2020
|
28 |
DeORFanizing Candida albicans Genes using Co-Expression
|
29 |
|
30 |
+
Code available at:
|
31 |
http://github.com/momeara/CalCEN
|
32 |
|
33 |
|
|
|
35 |
|
36 |
|
37 |
## Files ##
|
38 |
+
**chromsome_features.tsv**
|
39 |
+
- Candida albicans SC5314 chromosome features collected from Candida Genome Database 12-Jun 2018
|
40 |
+
- primary key: `feature_name`
|
41 |
+
- URL: [http://www.candidagenome.org/download/chromosomal_feature_files/C_albicans_SC5314/C_albicans_SC5314_A22_current_chromosomal_feature.tab](http://www.candidagenome.org/download/chromosomal_feature_files/C_albicans_SC5314/C_albicans_SC5314_A22_current_chromosomal_feature.tab)
|
42 |
+
- tab separated table with `13,281` rows
|
43 |
+
```
|
44 |
+
Column:
|
45 |
+
feature_name <chr> "C1_00010W_A", "C1_00010W_B", "C1_00020C_A", ...
|
46 |
+
gene_name <chr> NA, NA, NA, NA, NA, NA, "CTA2", "CTA2", NA, ...
|
47 |
+
aliases <chr> "orf19.6115|C1_00010W_B|C1_00010W|orf19.1353 ...
|
48 |
+
feature_type <chr> "ORF|Dubious", "ORF", "ORF|Uncharacterized", ...
|
49 |
+
chromosome <chr> "Ca22chr1A_C_albicans_SC5314", "Ca22chr1B_C_ ...
|
50 |
+
start_coordinate <dbl> 4059, 4059, 4720, 4720, 8908, 8908, 10718, 1 ...
|
51 |
+
stop_coordinate <dbl> 4397, 4397, 4409, 4409, 8597, 8597, 11485, 1 ...
|
52 |
+
strand <chr> "W", "W", "C", "C", "C", "C", "W", "W", "C", ...
|
53 |
+
primary_cgd_id <chr> "CAL0000182519", "CAL0000183273", "CAL000018 ...
|
54 |
+
secondary_cgd_id <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "CAL ...
|
55 |
+
description <chr> "Dubious open reading frame", "Dubious open ...
|
56 |
+
creation_date <date> 2014-06-24, 2014-06-24, 2014-06-24, 2014-06 ...
|
57 |
+
sequence_coordinate_date <date> 2014-06-24, 2014-06-24, 2014-06-24, 2014-06 ...
|
58 |
+
gene_name_date <date> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, ...
|
59 |
+
gene_name_is_standard <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA ...
|
60 |
+
sac_ortholog <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "TUP ...
|
61 |
+
feature_class <chr> "ORF", "ORF", "ORF", "ORF", "ORF", "ORF", "O ...
|
62 |
+
feature_status <chr> "Dubious", NA, "Uncharacterized", NA, "Uncha ...
|
63 |
+
is_alternatively_spliced <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA ...
|
64 |
+
is_transposable_element <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA ...
|
65 |
+
rna_type <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, ...
|
66 |
+
is_blocked_reading_frame <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA ...
|
67 |
+
```
|
68 |
+
|
69 |
+
**genes.tsv**
|
70 |
+
- Curated set of `6226` genes use in this study
|
71 |
+
- primary key: `feature_name`
|
72 |
- foreign keys:
|
73 |
+
- `feature_name` -> `chromosome_features.feature_name`
|
74 |
+
- tab separated table with `6,226` row
|
75 |
+
|
76 |
+
```
|
77 |
+
Column:
|
78 |
+
feature_name <chr> "C3_03580C_A", "C2_05660W_A", "C7_02860C_A", "C3_05180W_ ...
|
79 |
+
```
|
80 |
|
81 |
+
**expression_runs.tsv**
|
82 |
- Curated set of RNA-seq runs used in this study
|
83 |
- Collected from NCBI SRA
|
84 |
+
- primary key: `run_accession`
|
85 |
+
- tab separated table with `853` rows
|
86 |
+
```
|
87 |
+
Column:
|
88 |
+
submission_accession <chr> "ERA237292", "ERA237292", "ERA237292", ...
|
89 |
+
submission_lab <chr> "ArrayExpress", "ArrayExpress", "ArrayE ...
|
90 |
+
updated_date <date> 2016-01-11, 2016-01-11, 2016-01-11, 20 ...
|
91 |
+
sradb_updated <dttm> 2018-05-24 18:09:52, 2018-05-24 18:09: ...
|
92 |
+
study_accession <chr> "ERP003535", "ERP003535", "ERP003535", ...
|
93 |
+
study_alias <chr> "E-MTAB-1720", "E-MTAB-1720", "E-MTAB-1 ...
|
94 |
+
study_name <chr> "E-MTAB-1720", "E-MTAB-1720", "E-MTAB-1 ...
|
95 |
+
study_title <chr> "Initial stress responses of Candida al ...
|
96 |
+
study_type <chr> "Transcriptome Analysis", "Transcriptom ...
|
97 |
+
study_abstract <chr> "A study was carried out to characteris ...
|
98 |
+
center_project_name <chr> "Initial stress responses of Candida al ...
|
99 |
+
study_description <chr> "A study was carried out to characteris ...
|
100 |
+
study_attribute <chr> "ArrayExpress: E-MTAB-1720", "ArrayExpr ...
|
101 |
+
description <chr> "Protocols: Candida albicans (strain CA ...
|
102 |
+
design_description <chr> "Initial stress responses of Candida al ...
|
103 |
+
sample_accession <chr> "ERS323180", "ERS323177", "ERS323173", ...
|
104 |
+
sample_alias <chr> "E-MTAB-1720:NS B", "E-MTAB-1720:XS+NS ...
|
105 |
+
sample_name <chr> "E-MTAB-1720:NS B", "E-MTAB-1720:XS+NS ...
|
106 |
+
sample_attribute <chr> "organism: Candida albicans || genotype ...
|
107 |
+
taxon_id <dbl> 5476, 5476, 5476, 5476, 5476, 5476, 547 ...
|
108 |
+
background_strain <chr> "CAI4", "CAI4", "CAI4", "CAI4", "CAI4", ...
|
109 |
+
platform <chr> "ILLUMINA", "ILLUMINA", "ILLUMINA", "IL ...
|
110 |
+
platform_parameters <chr> "INSTRUMENT_MODEL: Illumina HiSeq 2000" ...
|
111 |
+
instrument_model <chr> "Illumina HiSeq 2000", "Illumina HiSeq ...
|
112 |
+
library_name <chr> "NS B", "XS+NS D", "NS D", "XS+NS D", " ...
|
113 |
+
library_strategy <chr> "RNA-Seq", "RNA-Seq", "RNA-Seq", "RNA-S ...
|
114 |
+
library_source <chr> "TRANSCRIPTOMIC", "TRANSCRIPTOMIC", "TR ...
|
115 |
+
library_selection <chr> "cDNA", "cDNA", "cDNA", "cDNA", "cDNA", ...
|
116 |
+
library_layout <chr> "SINGLE -", "SINGLE -", "SINGLE -", "SI ...
|
117 |
+
library_construction_protocol <chr> "Candida albicans (strain CAI4-CIp10) w ...
|
118 |
+
is_paired <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALS ...
|
119 |
+
read_spec <chr> "READ_INDEX: 0; READ_CLASS: Application ...
|
120 |
+
experiment_accession <chr> "ERX283431", "ERX283301", "ERX283317", ...
|
121 |
+
experiment_alias <chr> "E-MTAB-1720:120314_0166_D0814ACXX_3_SA ...
|
122 |
+
experiment_name <chr> "E-MTAB-1720:120314_0166_D0814ACXX_3_SA ...
|
123 |
+
experiment_title <chr> "Illumina HiSeq 2000 sequencing; Initia ...
|
124 |
+
experiment_attribute <chr> "Experimental Factor: compound_1: DPTA ...
|
125 |
+
run_accession <chr> "ERR310125", "ERR310018", "ERR309994", ...
|
126 |
+
run_alias <chr> "E-MTAB-1720:120314_0166_D0814ACXX_3_SA ...
|
127 |
+
run_center <chr> "The GenePool, University of Edinburgh" ...
|
128 |
+
spots <dbl> 1879764, 6330342, 5750605, 7088156, 649 ...
|
129 |
+
bases <dbl> 95867964, 322847442, 293280855, 3614959 ...
|
130 |
+
sra_fname <chr> "/nfs/ex7/work/momeara/ca_coexp/sra_806 ...
|
131 |
+
year_collected <dbl> 2018, 2018, 2018, 2018, 2018, 2018, 201 ...
|
132 |
+
```
|
133 |
+
|
134 |
+
**estimated_expression.tsv**
|
135 |
- gene by RNA-seq run expression levels
|
136 |
+
- primary key: `gene_id`, `run_accession`
|
137 |
- foreign keys:
|
138 |
+
- `gene_id` -> `genes.feature_name`
|
139 |
+
- `run_accession` -> `expression_runs.run_accession`
|
140 |
- The FPKM column represents the per-gene, per-run expression level
|
141 |
+
- tab separated table with `8,710,174` rows
|
142 |
+
```
|
143 |
+
Column:
|
144 |
+
gene_id <chr> "C1_00010W_A", "C1_00020C_A", "C1_00030C_A", "C1_000 ...
|
145 |
+
transcript_ids <chr> "C1_00010W_A", "C1_00020C_A", "C1_00030C_A", "C1_000 ...
|
146 |
+
length <dbl> 339, 312, 312, 768, 348, 1539, 1089, 852, 522, 729, ...
|
147 |
+
effective_length <dbl> 290, 263, 263, 719, 299, 1490, 1040, 803, 473, 680, ...
|
148 |
+
expected_count <dbl> 24.00, 2149.00, 355.01, 3219.94, 56.00, 8003.00, 696 ...
|
149 |
+
TPM <dbl> 3.38, 333.77, 55.14, 182.93, 7.65, 219.40, 273.72, 4 ...
|
150 |
+
FPKM <dbl> 4.36, 430.27, 71.08, 235.82, 9.86, 282.83, 352.86, 5 ...
|
151 |
+
run_accession <chr> "ERR1143627", "ERR1143627", "ERR1143627", "ERR114362 ...
|
152 |
+
study_accession <chr> "ERP013259", "ERP013259", "ERP013259", "ERP013259", ...
|
153 |
+
is_paired <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FAL ...
|
154 |
+
```
|
155 |
+
|
156 |
+
**CalCEN_network.tsv**
|
157 |
- Co-expression network
|
158 |
+
- primary key: `feature_name_1`, `feature_name_2`
|
159 |
- foreign keys:
|
160 |
+
- `feature_name_1` -> `genes.feature_name`
|
161 |
+
- `feature_name_2` -> `genes.feature_name`
|
162 |
- score represents the scaled rank of the association between genes among
|
163 |
all gene pairs.
|
164 |
+
- `score >= .99` is the default threshold for a significant association
|
165 |
+
- tab separated table with `38,763,076` rows
|
166 |
+
```
|
167 |
+
Column:
|
168 |
+
feature_name_1 <chr> "C3_03580C_A", "C2_05660W_A", "C7_02860C_A", "C3_05180 ...
|
169 |
+
feature_name_2 <chr> "C3_03580C_A", "C3_03580C_A", "C3_03580C_A", "C3_03580 ...
|
170 |
+
score <dbl> 1.00000000, 0.75060056, 0.40875062, 0.68047576, 0.3594 ...
|
171 |
+
```
|
172 |
|
173 |
+
**blastp_network.tsv**
|
174 |
- blastp sequence similarity network
|
175 |
+
- primary key: `feature_name_1`, `feature_name_2`
|
176 |
- foreign keys:
|
177 |
+
- `feature_name_1` -> `genes.feature_name`
|
178 |
+
- `feature_name_2` -> `genes.feature_name`
|
179 |
- score representes the scaled rank of the blastp Z-score among
|
180 |
+
all significant gene pair associations (i.e. missing -> `score = 0`).
|
181 |
+
- tab separated table with `112,129` rows
|
182 |
+
```
|
183 |
+
Column:
|
184 |
+
feature_name_1 <chr> "C3_03580C_A", "C1_08890C_A", "CR_06460W_A", "C3_03600 ...
|
185 |
+
feature_name_2 <chr> "C3_03580C_A", "C3_03580C_A", "C3_03580C_A", "C3_03580 ...
|
186 |
+
score <dbl> 0.95015957, 0.18948743, 0.27596712, 0.89713733, 0.0849 ...
|
187 |
+
```
|
188 |
|
189 |
+
**sac_gene.tsv**
|
190 |
- genetic associations between orthologous Sac genes Network
|
191 |
+
- primary key: `feature_name_1`, `feature_name_2`
|
192 |
- foreign keys:
|
193 |
+
- `feature_name_1` -> `genes.feature_name`
|
194 |
+
- `feature_name_2` -> `genes.feature_name`
|
195 |
- score represents the scaled rank of the the spearman correlation between
|
196 |
between binary genetic association collected from BioGRID between orthologous genes
|
197 |
from sac (higher is more siginficant)
|
198 |
+
- tab separated table with `38,763,076` rows
|
199 |
+
```
|
200 |
+
Column:
|
201 |
+
feature_name_1 <chr> "C3_03580C_A", "C2_05660W_A", "C7_02860C_A", "C3_05180 ...
|
202 |
+
feature_name_2 <chr> "C3_03580C_A", "C3_03580C_A", "C3_03580C_A", "C3_03580 ...
|
203 |
+
score <dbl> 1.00000000, 0.61167254, 0.23926432, 0.40917646, 0.6116 ...
|
204 |
+
```
|
205 |
|
206 |
+
**sac_gene.tsv**
|
207 |
- physical protein-protein interaction between orthologous Sac genes Network
|
208 |
+
- primary key: `feature_name_1`, `feature_name_2`
|
209 |
- foreign keys:
|
210 |
+
- `feature_name_1` -> `genes.feature_name`
|
211 |
+
- `feature_name_2` -> `genes.feature_name`
|
212 |
- score represents the scaled rank of the the extended binary network
|
213 |
between binary genetic association collected from BioGRID between orthologous genes
|
214 |
from sac (higher is more siginficant).
|
215 |
+
- tab separated table with `14,671,296` rows and columns
|
216 |
+
```
|
217 |
+
Column:
|
218 |
+
feature_name_1 <chr> "C3_03580C_A", "C2_05660W_A", "C7_02860C_A", "C3_05180 ...
|
219 |
+
feature_name_2 <chr> "C3_03580C_A", "C2_05660W_A", "C7_02860C_A", "C7_02860 ...
|
220 |
+
score <dbl> 1.0000000, 1.0000000, 1.0000000, 0.5000000, 0.5000000, ...
|
221 |
+
```
|
222 |
|
223 |
+
**yeast_net_network.tsv**
|
224 |
- YeastNet between orthologous Sac genes network
|
225 |
+
- primary key: `feature_name_1`, `feature_name_2`
|
226 |
- foreign keys:
|
227 |
+
- `feature_name_1` -> `genes.feature_name`
|
228 |
+
- `feature_name_2` -> `genes.feature_name`
|
229 |
- score is taken directly from the YeastNet network
|
230 |
+
- tab separated table with `425,792` rows
|
231 |
+
```
|
232 |
+
Column:
|
233 |
+
feature_name_1 <chr> "C1_12750C_A", "C5_05140W_A", "CR_07620W_A", "C7_04040 ...
|
234 |
+
feature_name_2 <chr> "C7_02860C_A", "C7_02860C_A", "C7_02860C_A", "C7_02860 ...
|
235 |
+
score <dbl> 2.300967, 2.415099, 2.300967, 2.309640, 2.337247, 2.22 ...
|
236 |
+
```
|
237 |
|
238 |
+
**go_annotations.tsv**
|
239 |
- GO annotations from Candida Genome Database collected 12-Jun 2018
|
240 |
+
- URL: [http://www.candidagenome.org/download/go/gene_association.cgd.gz](http://www.candidagenome.org/download/go/gene_association.cgd.gz)
|
241 |
+
- primary key: `feature_name`, `go_id`
|
242 |
- foreign keys:
|
243 |
+
- `feature_name` -> `genes.feature_name`
|
244 |
- values exclude NOT annotations and are propagated up the ontological hierarchy
|
245 |
+
- tab separated table with `29,159` rows
|
246 |
+
```
|
247 |
+
Column:
|
248 |
+
feature_name <chr> "C1_00100C_A", "C1_00640C_A", "C1_02660C_A", "C1_03540C_ ...
|
249 |
+
go_id <chr> "GO.0000002", "GO.0000002", "GO.0000002", "GO.0000002", ...
|
250 |
+
```
|
251 |
|
252 |
+
**gba_summary.tsv**
|
253 |
- Summary of guilt-by-association gene-function prediction
|
254 |
+
- primary key: `anno_id`, `network_id`
|
255 |
+
- `anno_id` in [all, MF, BB, CC]
|
256 |
+
- `network_id` is a set of networks ids separated by '|'
|
257 |
+
- `auroc_mean` is the mean area under the ROC curve summarized over 10-fold cross validation and `auroc_std` is the standard deviation
|
258 |
+
- `degree_null_auroc_mean` is the degree null predictor scores and `degree_null_auroc_std` is the standard deviation
|
259 |
+
- tab separated table with `125` rows
|
260 |
+
```
|
261 |
+
Column:
|
262 |
+
anno_id <chr> "all", "all", "all", "all", "all", "all", "all ...
|
263 |
+
network_id <chr> "CalCEN", "BlastP", "SacPhys", "SacGene", "Yea ...
|
264 |
+
auroc_mean <dbl> 0.7522911, 0.6880802, 0.7713754, 0.7525273, 0. ...
|
265 |
+
auroc_std <dbl> 0.08311475, 0.11720483, 0.17135738, 0.12416886 ...
|
266 |
+
degree_null_auroc_mean <dbl> 0.5111914, 0.5473948, 0.5996210, 0.5926223, 0. ...
|
267 |
+
degree_null_auroc_std <dbl> 0.1069059, 0.1418470, 0.1340942, 0.1316009, 0. ...
|
268 |
+
```
|