-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (44 loc) · 1.12 KB
/
.gitignore
File metadata and controls
53 lines (44 loc) · 1.12 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
43
44
45
46
47
48
49
50
51
52
53
configuration
# ========================
# Ignore ALL .env files anywhere in the project
*.env
# EXCEPT for the safe template (force Git to track this one)
!TemperatureDependentCelegansAging_Spang.template.env
# ========================
# 2. Snakemake Hidden Files
# ========================
# Snakemake's internal tracking directory (can get massive)
.snakemake/
# Standard workflow output directories (keeps data off GitHub)
results/
logs/
data/
# ========================
# 3. Python & Jupyter Junk
# ========================
# Jupyter autosaves
.ipynb_checkpoints/
# Python compiled bytecode
__pycache__/
*.py[cod]
# all jupyter notebooks...
*.ipynb
# except the currently prepared notebook
!TemperatureDependentCelegansAging_Spang.current.ipynb
# ========================
# 4. Hugging Face Uploading script with FILLED IN token
# ========================
upload_to_hf.with_token.py
# ========================
# 4. OS / System Files
# ========================
.DS_Store
Thumbs.db
# ========================
# # 5. Tool Caches & Hidden Dirs
# # ========================
WF/.java/
WF/.cache/
# Environment and tool caches
.java/
.cache/