-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
56 lines (49 loc) · 1010 Bytes
/
.gitignore
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
# Python temps
__pycache__/
*.py[cod]
*$py.class
build/
dist/
eggs/
.eggs/
*.egg-info/
*.egg
.tox/
.mypy_cache/
# Editor Temps
.*.sw?
*~
\#*\#
.desktop
*venv*
*.Vertex.json
*.Edge.json
*.sqlite
.coverage
.cache/
.pytest_cache/
# ignore all vertex and edge files
outputs/**/*Vertex.json*
outputs/**/*Edge.json*
outputs/allele/sqlite.db
!tests/unit/**/outputs/**/*.json*
# ignore everything except markdown documents in source
source/**/*.*
!source/**/version.txt
!source/**/*.md
!source/**/.gitkeep
!source/**/*.dvc
!source/**/.gitignore
!source/phenotype_enricher/disease_alias.tsv
!source/drug_enricher/drug_alias.tsv
!source/pharmacodb/extract_data.sh
!source/pharmacodb/tables_to_csv.py
!source/pharmacodb/pharmacodb.yaml
!source/pathway_commons/pc_download.sh
!source/prism/prism_download.sh
!source/compound/get_biothings.py
tests/unit/allele/source/myvariantinfo/sqlite.db
tests/unit/compound/source/compound/sqlite.db
tests/unit/phenotype/source/phenotype/sqlite.db
tests/unit/*/test/*
.DS_Store