-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (40 loc) · 809 Bytes
/
Copy path.gitignore
File metadata and controls
50 lines (40 loc) · 809 Bytes
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
# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
*.egg
# Installed package state
.eggs/
# Test / coverage
.pytest_cache/
.coverage
htmlcov/
# repseq runtime artifacts
/repseq_output/
/tmp/
~/.repseq/
# User-generated configs (only default_config.yaml + examples/ are tracked)
/config/my_*.yaml
/my_*.yaml
/repseq_config.yaml
/repseq_config.yaml~
# Local scratch
/JUNK/
# Claude Code local config (not project config)
.claude/
# Local-only Claude-agent guidance (no longer published to GitHub)
CLAUDE.md
CLAUDE.md~
# hmmpress binary indexes (auto-regenerated from the .hmm source on
# first run — no need to bloat the repo with ~4MB of derivable bytes).
repseq/data/hmms/*.h3f
repseq/data/hmms/*.h3i
repseq/data/hmms/*.h3m
repseq/data/hmms/*.h3p
# macOS
.DS_Store
# Editors
.vscode/
.idea/