-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
executable file
·113 lines (93 loc) · 1.92 KB
/
.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# idea stuff
.idea/*
.idea/
# Jupyter stuff
.ipynb_checkpoints/
.ipynb_checkpoints/*
# Cython stuff (pycache)
data/__pycache__/
minos/__pycache__/
modules/__pycache__/
minos/*/__pycache__/
*.pyc
*/*.pyc
*/*/*.pyc
# R Stuff
.Rhistory
# OSX files
.DS_Store
*/.DS_Store
*/*/.DS_Store
*/*/*/.DS_Store
# data folders generated in code
data/*/*.csv
data/*.csv
data/final_US/cross_validation/*
# R transitions objects and coefficient files
data/transitions/*coefficients.txt
data/transitions/*.rds
data/transitions/*/*/*.rds
data/transitions/*/*.rds
data/transitions/*/*coefficients.txt
!data/transitions/doNotDelete.txt
data/transitions/*
data/transitions/*/*
data/transitions/*/*/*
# build stuff
build/
dist/
minos.egg-info/
# outputs
output/*
output/*/*
output/*/*/*
# logs
test.log
# testing
#testing/
#testing/*
# just for time being remove the tests and data (not in use currently)
tests/
tests/data/*
# R project files have US data in them. need removing.
.Rproj.user
Minos.Rproj
.RData
# Knitted R notebook files
minos/validation/*.html
minos/outcomes/*.html
minos/testing/*.html
# rob phd data
papers/phd1/data/*
# Chris' data
persistent_data/ADULT*.csv
persistent_data/Fertility/
persistent_data/Fertility/*
persistent_data/Mortality/
persistent_data/Mortality/*
# conda env.
conda_minos
# slurm logs
logs/*
# US raw files
UKDA-6614-stata
data/UKDA-6614-stata
# Robs paper folders
papers/
# Plots (can be made by the model so should not be saved on git)
plots/
plots/*
# HR 21/12/22 Windows utils stuff to ignore
minos/windowsutils/output/
minos/windowsutils/output/*
# LA 30/1/24
# spatial data files
persistent_data/spatial_data/*
# testing notebooks
minos/testing/*.Rmd
# image files creates by RNotebooks (we can use the html file generated instead of the individual files)
minos/validation/*_files/
minos/testing/*_files/
# python notebooks for testing
notebooks/equivalent_income_test.ipynb
notebooks/testing_scottish_sample.ipynb