-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.gitignore
More file actions
42 lines (37 loc) · 1.05 KB
/
Copy path.gitignore
File metadata and controls
42 lines (37 loc) · 1.05 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
# --- migec-specific ---
# NB: .gitignore has no trailing comments -- the whole line is the pattern, so a comment after a
# pattern silently makes it match nothing. Comments go on their own line.
# cmake out-of-tree build, and scikit-build-core's build/{wheel_tag}
build/
# the thread-sanitizer build; see docs/performance.rst for how to make one
build-tsan/
# a second ordinary build, for verifying a change without disturbing the installed extension
build-verify/
# setup.sh creates this
.venv/
# intermediate record files; regenerate with `migec checkout`
*.mig
*.pumi
# local experiments, never committed
scratch/
# --- python ---
__pycache__/
*.py[cod]
*.egg-info/
dist/
.pytest_cache/
.ruff_cache/
.coverage
htmlcov/
# --- docs ---
docs/_build/
# --- os ---
.DS_Store
# Alignment indices pulled down by scripts/read_start_dispersion.py (X1). pysam writes the .bai
# next to wherever it is pointed, which for an HTTP URL is the working directory -- 4.6 MB of it
# reached a published sdist before this line existed.
*.bam
*.bai
*.crai
build-verify/
_migec_error.log