Files
usher-exploring/.gitignore
gbanyan dc36730cb4 docs: update gitignore to track report results, add README cross-links
- Revised .gitignore to ignore raw data/cache but track data/report/
  (candidates TSV/Parquet, plots, reproducibility metadata)
- Added zh↔en cross-links between README.md and README.en.md

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 05:57:27 +08:00

58 lines
746 B
Plaintext

# === Raw data & intermediate files ===
data/cache/
data/gnomad/
data/annotation/
data/expression/
data/localization/
data/animal_models/
data/scoring/
# DuckDB database (large, regeneratable)
*.duckdb
*.duckdb.wal
# Provenance JSON (regenerated on each run)
*.provenance.json
*.provenance.provenance.json
# === Keep report results ===
# data/report/ is NOT ignored — candidates.tsv, parquet, plots are tracked
# === Python ===
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
# === Testing ===
.pytest_cache/
.coverage
htmlcov/
.tox/
# === IDE ===
.vscode/
.idea/
*.swp
*.swo
*~
# === Virtual environment ===
.venv/
venv/
env/
# === OS ===
.DS_Store
Thumbs.db
# === Planning (internal) ===
.planning/