-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitignore
46 lines (35 loc) · 982 Bytes
/
.gitignore
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
# Ignore Nextflow-specific files, including logs, cache, and temporary files
.nextflow*
# Ignore Nextflow's work directory where intermediate files are stored
work/
# Ignore results directory, as this is typically generated output that can be large and recreated
results/
# MacOS specific hidden file that stores folder view settings
.DS_Store
testing/
testing*
dbs/
node_modules/
# Optional: ignore any temporary files created by Python or text editors
__pycache__/ # Python cache directory
*.pyc
*.pyo # Python optimized bytecode files
*.pkl # Pickle files (often generated during data processing)
# Ignore any virtual environment directories used to isolate Python dependencies
venv/
env/
*.venv/
# Ignore Jupyter Notebook checkpoints, if notebooks are used for analysis or reporting
.ipynb_checkpoints/
# Ignore any temporary, swap, or backup files created by editors like Vim or Emacs
*~
*.swp
*.swo
*.bak
.coverage
htmlcov/
*.cover
reports/
trace/
.cache/
logs/