@@ -58,13 +58,16 @@ export const FILE_CONFIGS = {
58
58
title : "Synteny Data File" ,
59
59
description : "Contains information about syntenic blocks between genomes" ,
60
60
format : [
61
- { field : "ref_chr" , desc : "Reference chromosome ID" } ,
62
- { field : "ref_start" , desc : "Start position in reference" } ,
63
- { field : "ref_end" , desc : "End position in reference" } ,
61
+ { field : "query_name" , desc : "Query species name" } ,
64
62
{ field : "query_chr" , desc : "Query chromosome ID" } ,
65
63
{ field : "query_start" , desc : "Start position in query" } ,
66
64
{ field : "query_end" , desc : "End position in query" } ,
67
- { field : "query_strand" , desc : "Orientation (+/-)" }
65
+ { field : "query_strand" , desc : "Orientation (+/-)" } ,
66
+ { field : "ref_chr" , desc : "Reference chromosome ID" } ,
67
+ { field : "ref_start" , desc : "Start position in reference" } ,
68
+ { field : "ref_end" , desc : "End position in reference" } ,
69
+ { field : "ref_species" , desc : "Reference species name" } ,
70
+ { field : "qry_lvl" , desc : "Query level" }
68
71
]
69
72
} ,
70
73
fileType : '.csv' ,
@@ -92,6 +95,7 @@ export const FILE_CONFIGS = {
92
95
format : [
93
96
{ field : "species_name" , desc : "Name of the species" } ,
94
97
{ field : "chr_id" , desc : "Chromosome identifier" } ,
98
+ { field : "chr_type" , desc : "Type of chromosome" } ,
95
99
{ field : "chr_size_bp" , desc : "Chromosome size in base pairs" } ,
96
100
{ field : "centromere_start" , desc : "Centromere start position (optional)" } ,
97
101
{ field : "centromere_end" , desc : "Centromere end position (optional)" }
@@ -128,18 +132,21 @@ export const FILE_CONFIGS = {
128
132
} ,
129
133
annotations : {
130
134
title : "Gene Annotations" ,
131
- description : "Upload ref_gene_annotations.csv file (optional) " ,
135
+ description : "Upload ref_gene_annotations.csv file" ,
132
136
tooltip : {
133
137
title : "Gene Annotations File" ,
134
138
description : "Contains information about gene annotations" ,
135
139
format : [
136
140
{ field : "chromosome" , desc : "Chromosome ID" } ,
141
+ { field : "genomic_accession" , desc : "Genomic accession number" } ,
137
142
{ field : "start" , desc : "Start position" } ,
138
143
{ field : "end" , desc : "End position" } ,
139
144
{ field : "strand" , desc : "Strand (+/-)" } ,
140
145
{ field : "class" , desc : "Gene class" } ,
146
+ { field : "locus_tag" , desc : "Locus tag" } ,
141
147
{ field : "symbol" , desc : "Gene symbol" } ,
142
- { field : "name" , desc : "Gene name" }
148
+ { field : "name" , desc : "Gene name" } ,
149
+ { field : "GeneID" , desc : "Gene ID" }
143
150
]
144
151
} ,
145
152
fileType : '.csv' ,
0 commit comments