This repository was archived by the owner on Jun 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
105 lines (93 loc) · 1.35 KB
/
Copy path.gitignore
File metadata and controls
105 lines (93 loc) · 1.35 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Claude / AI tooling
CLAUDE.md
GITHUB_WORKFLOW.md
.claude/
# Virtual environments
.venv/
venv/
env/
ENV/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
*.egg
MANIFEST
pip-log.txt
pip-delete-this-directory.txt
# Testing / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/
# Linting / type checking
.ruff_cache/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.pytype/
# Local database cache (downloaded at runtime, project root only)
/data/
!/data/.gitkeep
# Private genotype files — NEVER commit
# CC0 openSNP test fixtures are hosted as release assets (see scripts/fetch_testdata.sh)
MHG.txt
# Genotype data — NEVER commit private genetic data
*.vcf
*.vcf.gz
*.vcf.gz.tbi
/*.txt
/*.csv
!README.txt
!CHANGELOG.txt
# Synthetic test fixtures are committed
!tests/fixtures/*.vcf
!tests/fixtures/*.vcf.gz
!tests/fixtures/*.txt
# IDE / editor
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
# OS
Thumbs.db
desktop.ini
# Jupyter
.ipynb_checkpoints/
*.ipynb
# Environment / secrets
.env
.env.local
.env.*.local
*.pem
*.key
# Test data library (committed fixtures; downloads stay gitignored)
test_data/databases/
test_data/baselines_local/
test_data/gwas_catalog*
test_data/gwas-catalog*
test_data/data/
test_data.tar.gz