-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
42 lines (37 loc) · 795 Bytes
/
Copy path.gitignore
File metadata and controls
42 lines (37 loc) · 795 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
/target
/scratch
/venv
.vscode/
*.fa
*.bam
*.bai
.ipynb_checkpoints/
python/genomeshader/__pycache__/
__pycache__/
*.so
*.ipynb
genomeshader_runs/
# Stray node tooling — the headless tests use the Python playwright package.
node_modules/
package.json
package-lock.json
# Local research journal — never committed
JOURNAL.md
JOURNAL/
# Downloaded real datasets (Pf7 etc.) — never commit
fiss_downloads/
# htslib HTS_IDX_SAVE_REMOTE copies of remote indexes (dropped in cwd)
/*.tbi
/*.csi
*.pf7.vcf.gz.tbi
# Debug logs (GenomeShader debug=True)
genomeshader_logs/
genomeshader_debug_*.log
# Path-dep crate; do not commit its local cargo output
/vendor/rust-htslib/target
# Build artifacts — wheels/sdists are never checked in (build with maturin)
/dist/
/wheels/
*.whl
*.tar.gz
/.venv