-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add availability json * Update gitinogre * Add omop-lite * Add contributing * Update gitignore * Add main method and VSCode debug configurations * Add distribution query test configuration * Improve launch json
- Loading branch information
Showing
8 changed files
with
99 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,3 +169,5 @@ cython_debug/ | |
|
||
# PyPI configuration file | ||
.pypirc | ||
|
||
output.json |
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,40 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Bunny Daemon", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"module": "hutch_bunny.daemon", | ||
"justMyCode": true, | ||
"console": "integratedTerminal" | ||
}, | ||
{ | ||
"name": "Bunny CLI Availability", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"module": "hutch_bunny.cli", | ||
"args": [ | ||
"--body", | ||
"tests/queries/availability.json", | ||
], | ||
"justMyCode": true, | ||
"console": "integratedTerminal" | ||
}, | ||
{ | ||
"name": "Bunny CLI Distribution", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"module": "hutch_bunny.cli", | ||
"args": [ | ||
"--body", | ||
"tests/queries/distribution.json", | ||
], | ||
"justMyCode": true, | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |
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,5 @@ | ||
# Contributing | ||
|
||
Thanks for your interest in contributing! | ||
|
||
Please find guidance to contributing to Bunny in our [documentation](https://health-informatics-uon.github.io/hutch/contributing). |
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
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,26 @@ | ||
{ | ||
"task_id": "job-2023-01-13-14: 20: 38-project", | ||
"project": "project_id", | ||
"owner": "user1", | ||
"cohort": { | ||
"groups": [ | ||
{ | ||
"rules": [ | ||
{ | ||
"varname": "OMOP", | ||
"varcat": "Person", | ||
"type": "TEXT", | ||
"oper": "=", | ||
"value": "8507" | ||
} | ||
], | ||
"rules_oper": "AND" | ||
} | ||
], | ||
"groups_oper": "OR" | ||
}, | ||
"collection": "collection_id", | ||
"protocol_version": "v2", | ||
"char_salt": "salt", | ||
"uuid": "unique_id" | ||
} |
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,7 @@ | ||
{ | ||
"code": "GENERIC", | ||
"analysis": "DISTRIBUTION", | ||
"uuid": "59952952-c187-432a-981a-b3d35e1a7087", | ||
"collection": "RQ-CC-xuihj7ll-kjlj-3989-b201-587934a89797", | ||
"owner": "user1" | ||
} |