-
Notifications
You must be signed in to change notification settings - Fork 5
DAFNI Workflow Enhancements #299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 13 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
5dc3d27
remove variables from entry-point
f-allian b929564
update sample dag file to include the variables as node attributes
f-allian 354fd3e
update Dockerfile for dafni image
f-allian 0e53b47
update dafni model definition
f-allian 4497da2
update README.md
f-allian fb83d65
turned main_dafni.py into a module
f-allian 5b736b8
final touches to main_dafni.py
f-allian ea46bdc
add: tests for main_dafni.py
f-allian 005d2da
update: tests to dafni workflow
f-allian 9a45392
fix: typo in Dockerfile
f-allian 456048c
fix: default in ignore_cycles tests_main_dafni.py
f-allian 029fdfc
updated causal_tests_results.json
f-allian 802e274
update: file names
f-allian 05a85fd
update: README.md metadata
f-allian 3cd85ae
update: README
f-allian a03a807
Merge remote-tracking branch 'origin/main' into dafni-dev
f-allian 5202034
Merge branch 'main' into dafni-dev
f-allian 66cb0e7
remove: main_dafni.py and related files
f-allian 233a49c
update: Docker image and config file
f-allian 4a34334
update: DAFNI model_definition.yaml
f-allian 5742985
update: example DAFNI test and results
f-allian 60b3c7f
update: README.md
f-allian 8977c0f
remove project tags for now
f-allian 28aa53e
Merge branch 'main' into dafni-dev
f-allian a26c051
update: docker-compose.yaml
f-allian 74c6f2f
update: publish-to-dafni.yaml
f-allian 40faa83
Merge branch 'main' into dafni-dev
f-allian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,7 +1,12 @@ | ||
digraph CausalDAG { | ||
rankdir=LR; | ||
"vaccine" -> "cum_vaccinations"; | ||
"vaccine" -> "cum_vaccinated"; | ||
"vaccine" -> "cum_infections"; | ||
"max_doses"; | ||
vaccine [datatype="int", typestring="input"]; | ||
cum_vaccinations [datatype="int", typestring="output"]; | ||
cum_vaccinated [datatype="int", typestring="output"]; | ||
cum_infections [datatype="int", typestring="output"]; | ||
max_doses [datatype="int", typestring="output"]; | ||
vaccine -> cum_vaccinations; | ||
vaccine -> cum_vaccinated; | ||
vaccine -> cum_infections; | ||
max_doses; | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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
Empty file.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.