Skip to content

Commit d22ef2c

Browse files
authored
Merge pull request #27 from CovertLab/growth-paper
Update to latest model version
2 parents 7e4cc9e + 5e3b07f commit d22ef2c

File tree

1,061 files changed

+275629
-507517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,061 files changed

+275629
-507517
lines changed

.dockerignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
/.idea
44
/docs
55
/user
6+
/stubs
7+
/.mypy_cache
8+
/.benchmarks
69

710
# Compiled source #
811
###################
912
*.pyc
10-
__pycache__
13+
**/__pycache__/
1114

1215
# OS generated files #
1316
######################
@@ -29,6 +32,7 @@ coverage.xml
2932
nosetests.xml
3033
nosetests.*.xml
3134
.pytest_cache
35+
/unittests.xml
3236

3337
# IPython notebook files #
3438
##########################
@@ -37,6 +41,8 @@ nosetests.*.xml
3741
# Output files #
3842
################
3943
/out
44+
/colony/out
45+
reconstruction/ecoli/scripts/nca/out/
4046

4147
# Cached sim data #
4248
###################
@@ -106,6 +112,9 @@ reconstruction/ecoli/dataclasses/process/two_component_system_odes_fitter.py
106112
*.hdf
107113
*.tar.gz
108114
/build/
115+
/.mypy_cache/
116+
secrets.*
117+
reconstruction/ecoli/scripts/nca/data/regulon-db/*.tsv
109118

110119
# LaTeX compilation files #
111120
###########################

.gcloudignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#!include:.dockerignore

.gitignore

Lines changed: 34 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
1+
# A temporary copy to upload to Cloud Build. Don't .dockerignore it.
2+
/cloud/docker/runtime/requirements.txt
3+
14
# Compiled source #
25
###################
36
*.pyc
7+
__pycache__
48

59
# OS generated files #
610
######################
711
.DS_Store
812
.DS_Store?
913
._*
1014

15+
# git source info to copy into Docker Images #
16+
##############################################
17+
/source-info/
18+
1119
# VIM temp files #
1220
##################
1321
*.swp
@@ -22,18 +30,17 @@ coverage.xml
2230
nosetests.xml
2331
nosetests.*.xml
2432
.pytest_cache
33+
/unittests.xml
2534

2635
# IPython notebook files #
2736
##########################
2837
.ipynb_checkpoints
2938

3039
# Output files #
3140
################
32-
out
33-
out/*
34-
!out/out.txt
35-
!out/images.html
36-
!out/makeHtml.py
41+
/out
42+
/colony/out
43+
reconstruction/ecoli/scripts/nca/out/
3744

3845
# Cached sim data #
3946
###################
@@ -72,23 +79,23 @@ user/*
7279
# kernprof.py output #
7380
######################
7481
*.lprof
82+
*.prof
7583

7684
# pyenv python version #
7785
########################
7886
.python-version
7987

80-
# files created from templates #
81-
################################
82-
/my_launchpad*.yaml
83-
/my_qadapter*.yaml
88+
# personal config files #
89+
#########################
90+
/*.yaml
8491

8592
# Fireworks output #
8693
####################
8794
launcher_*
8895
block_*
8996
FW.json
9097

91-
# Fitter output #
98+
# Parca output #
9299
#################
93100
reconstruction/ecoli/dataclasses/process/equilibrium_odes.py
94101
reconstruction/ecoli/dataclasses/process/two_component_system_odes.py
@@ -107,7 +114,11 @@ reconstruction/ecoli/dataclasses/process/two_component_system_odes_fitter.py
107114
*.pickle
108115
*.log
109116
*.hdf
117+
*.tar.gz
110118
/build/
119+
/.mypy_cache/
120+
secrets.*
121+
reconstruction/ecoli/scripts/nca/data/regulon-db/*.tsv
111122

112123
# PyCharm files #
113124
#################
@@ -120,6 +131,7 @@ reconstruction/ecoli/dataclasses/process/two_component_system_odes_fitter.py
120131
.idea/libraries
121132
.idea/codeStyleSettings.xml
122133
.idea/codeStyles/codeStyleConfig.xml
134+
.idea/inspectionProfiles/profiles_settings.xml
123135

124136
# Potentially OK if editing it to project-jdk-name="Python 2.7" works:
125137
.idea/misc.xml
@@ -135,7 +147,18 @@ reconstruction/ecoli/dataclasses/process/two_component_system_odes_fitter.py
135147

136148
# Gradle:
137149
.idea/gradle.xml
138-
.idea/libraries
139150

140151
# Mongo Explorer plugin:
141152
.idea/mongoSettings.xml
153+
154+
# LaTeX compilation files #
155+
###########################
156+
*.aux
157+
*.bbl
158+
*.blg
159+
*.fdb_latexmk
160+
*.fls
161+
*.synctex.gz
162+
163+
# VSCode:
164+
.vscode/

.idea/codeStyles/Project.xml

Lines changed: 2 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 60 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/scopes/NOT_pyi_files.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/scopes/NOT_tsv_files.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/scopes/py_files.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/wcEcoli.iml

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)