-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
69 lines (51 loc) · 764 Bytes
/
.gitignore
File metadata and controls
69 lines (51 loc) · 764 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#ignore /bin
/bin
#ignore conda-meta
/conda-meta
#ignore all logs
**/logs
logs
**/*.pyc
#ignore config
config.txt
#ignore vscode settings
/.vscode
#ignore snakemake logs
/.snakemake
#ignore pickled model
BaggingClassifier.joblib
#ignore results directory contents
/results/**
#ignore Python cache files
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
#ignore IDE files
.idea/
*.swp
*.swo
*~
#ignore temporary files
*.tmp
*.bak
pipeline_output.log
example.docx
#ignore environment files
.env
.venv
env/
venv/
#ignore data files (except requiring manual download)
/data/go_terms_support/*.obo
/data/go_terms_support/*.gz
/data/go_terms_support/gene2go
/data/raw/
#ignore markdown files
*.md
#ignore claude cache
/.claude
#ignore misc caches
cache/
/cache