-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
68 lines (61 loc) · 1.31 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
output:
name: test.db
type: sqlite
env: .env
dataset: hsapiens_gene_ensembl
host: http://grch37.ensembl.org
error: ignore
# these can be an arbitrary # of columns but keep in mind if you want to download the
# whole ensembl database there is an easier way, just select the ones you think you will need
# you should keep the first columns as they describe the relationship between the gene/transcript
# coordinate table and the annotation table
gene_annotations:
ensembl_gene_id: #this is mandatory
type: fk
index: true
fk:
table: genes
column: id
external_gene_name:
type: str
index: false
description:
type: str
index: false
gene_biotype:
type: str
index: false
hgnc_id:
type: str
index: false
hgnc_symbol:
type: str
index: false
ucsc:
type: str
index: false
wikigene_name:
type: str
index: false
wikigene_description:
type: str
index: false
external_synonym:
type: str
index: false
transcript_annotations:
ensembl_transcript_id: #this is mandatory
type: fk
index: true
fk:
table: transcripts
column: id
transcript_biotype:
type: str
index: false
external_transcript_name:
type: str
index: false
transcript_is_cannonical:
type: str
index: false