-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
678 changed files
with
306,171 additions
and
32,876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#!include:.dockerignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
.PHONY: compile, clean | ||
.PHONY: compile, clean, recompile | ||
|
||
compile: | ||
python2.7 setup.py build_ext --inplace | ||
python setup.py build_ext --inplace | ||
rm -fr build | ||
|
||
# The reconstruction/ecoli/dataclasses/process/*.py files were generated by | ||
# write_ode_file.py in Parca code. | ||
# Fireworks writes launcher_20* and block_20*. | ||
clean: | ||
rm -fr fixtures | ||
(cd reconstruction/ecoli/dataclasses/process && rm -f equilibrium_odes.py two_component_system_odes*.py) | ||
find . -not \( -path ./out -prune \) -not \( -path ./.git -prune \) -name "*.cPickle" -exec rm -fr {} \; | ||
find . -name "*.pyc" -exec rm -rf {} \; | ||
find . -name "*.o" -exec rm -fr {} \; | ||
find . -name "*.so" -exec rm -fr {} \; | ||
rm -fr build | ||
rm -fr launcher_20* block_20* | ||
|
||
# Delete just the *.so libraries then (re)compile them. | ||
# This is useful when switching to a different Python virtualenv. | ||
recompile: | ||
find . -name "*.so" -delete | ||
make compile |
Oops, something went wrong.