-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
36 lines (30 loc) · 877 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
# Ignore notebook checkpoints
.ipynb_checkpoints/
example/.ipynb_checkpoints/
expressyeaself/.ipynb_checkpoints/
expressyeaself/tests/.ipynb_checkpoints/
expressyeaself/models/.ipynb_checkpoints/
example/processed_data/.ipynb_checkpoints/
# Ignore pycaches
expressyeaself/__pycache__/*
expressyeaself/tests/__pycache__/*
example/__pycache__/*
expressyeaself/models/*/__pycache__/
# Ignore development notebooks
copy_ExampleNetworks.ipynb
process_data.ipynb
# Ignore large data files
example/average*
example/Abf1TATA_data/2019*
example/Abf1TATA_data/average*
example/other_scaffolds/*
example/pTpA_data/2019*
example/pTpA_data/average*
example/processed_data/*
# Ignore files created by unit tests
expressyeaself/tests/trial*
expressyeaself/tests/test_files/*
# Ignore notebooks created for unit test development
expressyeaself/tests/*.ipynb
# Ignore .coverage
.coverage