-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prohibit overlap of locus times corresponding to regional times in th…
…e same merge group close #384 also add test that any non-regional timepoint declared as a participant in a merge for tracing is illegal; close #393
- Loading branch information
Showing
11 changed files
with
267 additions
and
20 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
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
28 changes: 28 additions & 0 deletions
28
...rentTimepointRegionalMergeForTracing/bad_example__blank_time_in_tracing_merge_groups.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,28 @@ | ||
{ | ||
"proximityFilterStrategy": { | ||
"semantic": "UniversalProximityPermission" | ||
}, | ||
"mergeRulesForTracing": { | ||
"discardRoisNotInGroupsOfInterest": true, | ||
"distanceThreshold": 2000, | ||
"requirementType": "Conjunctive", | ||
"groups": [[0, 7], [8, 9]] | ||
}, | ||
"imagingRounds": [ | ||
{"time": 0, "name": "pre_image", "isBlank": true}, | ||
{"time": 1, "probe": "Dp001"}, | ||
{"time": 2, "probe": "Dp002"}, | ||
{"time": 3, "probe": "Dp003"}, | ||
{"time": 4, "probe": "Dp006"}, | ||
{"time": 5, "probe": "Dp007"}, | ||
{"time": 6, "probe": "Dp101", "isRegional": true}, | ||
{"time": 7, "probe": "Dp102", "isRegional": true}, | ||
{"time": 8, "probe": "Dp103", "isRegional": true}, | ||
{"time": 9, "probe": "Dp104", "isRegional": true} | ||
], | ||
"locusGrouping": { | ||
"7": [1, 3], | ||
"8": [2, 4] | ||
}, | ||
"tracingExclusions": [0, 6, 7, 8, 9] | ||
} |
28 changes: 28 additions & 0 deletions
28
...rentTimepointRegionalMergeForTracing/bad_example__locus_time_in_tracing_merge_groups.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,28 @@ | ||
{ | ||
"proximityFilterStrategy": { | ||
"semantic": "UniversalProximityPermission" | ||
}, | ||
"mergeRulesForTracing": { | ||
"discardRoisNotInGroupsOfInterest": true, | ||
"distanceThreshold": 2000, | ||
"requirementType": "Conjunctive", | ||
"groups": [[5, 7], [8, 9]] | ||
}, | ||
"imagingRounds": [ | ||
{"time": 0, "name": "pre_image", "isBlank": true}, | ||
{"time": 1, "probe": "Dp001"}, | ||
{"time": 2, "probe": "Dp002"}, | ||
{"time": 3, "probe": "Dp003"}, | ||
{"time": 4, "probe": "Dp006"}, | ||
{"time": 5, "probe": "Dp007"}, | ||
{"time": 6, "probe": "Dp101", "isRegional": true}, | ||
{"time": 7, "probe": "Dp102", "isRegional": true}, | ||
{"time": 8, "probe": "Dp103", "isRegional": true}, | ||
{"time": 9, "probe": "Dp104", "isRegional": true} | ||
], | ||
"locusGrouping": { | ||
"7": [1, 3], | ||
"8": [2, 4] | ||
}, | ||
"tracingExclusions": [0, 6, 7, 8, 9] | ||
} |
30 changes: 30 additions & 0 deletions
30
...nalMergeForTracing/bad_example__overlap_locus_times_for_regional_times_to_merge__384.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,30 @@ | ||
{ | ||
"proximityFilterStrategy": { | ||
"semantic": "UniversalProximityPermission" | ||
}, | ||
"mergeRulesForTracing": { | ||
"discardRoisNotInGroupsOfInterest": true, | ||
"distanceThreshold": 2000, | ||
"requirementType": "Conjunctive", | ||
"groups": [[6, 7], [8, 9]] | ||
}, | ||
"imagingRounds": [ | ||
{"time": 0, "name": "pre_image", "isBlank": true}, | ||
{"time": 1, "probe": "Dp001"}, | ||
{"time": 2, "probe": "Dp002"}, | ||
{"time": 3, "probe": "Dp003"}, | ||
{"time": 4, "probe": "Dp006"}, | ||
{"time": 5, "probe": "Dp007"}, | ||
{"time": 6, "probe": "Dp101", "isRegional": true}, | ||
{"time": 7, "probe": "Dp102", "isRegional": true}, | ||
{"time": 8, "probe": "Dp103", "isRegional": true}, | ||
{"time": 9, "probe": "Dp104", "isRegional": true} | ||
], | ||
"locusGrouping": { | ||
"6": [1, 3], | ||
"7": [3, 5], | ||
"8": [2], | ||
"9": [4] | ||
}, | ||
"tracingExclusions": [0, 6, 7, 8, 9] | ||
} |
28 changes: 28 additions & 0 deletions
28
...ferentTimepointRegionalMergeForTracing/good_example__legitimate_tracing_merge_groups.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,28 @@ | ||
{ | ||
"proximityFilterStrategy": { | ||
"semantic": "UniversalProximityPermission" | ||
}, | ||
"mergeRulesForTracing": { | ||
"discardRoisNotInGroupsOfInterest": true, | ||
"distanceThreshold": 2000, | ||
"requirementType": "Conjunctive", | ||
"groups": [[6, 7], [8, 9]] | ||
}, | ||
"imagingRounds": [ | ||
{"time": 0, "name": "pre_image", "isBlank": true}, | ||
{"time": 1, "probe": "Dp001"}, | ||
{"time": 2, "probe": "Dp002"}, | ||
{"time": 3, "probe": "Dp003"}, | ||
{"time": 4, "probe": "Dp006"}, | ||
{"time": 5, "probe": "Dp007"}, | ||
{"time": 6, "probe": "Dp101", "isRegional": true}, | ||
{"time": 7, "probe": "Dp102", "isRegional": true}, | ||
{"time": 8, "probe": "Dp103", "isRegional": true}, | ||
{"time": 9, "probe": "Dp104", "isRegional": true} | ||
], | ||
"locusGrouping": { | ||
"7": [1, 3, 5], | ||
"8": [2, 4] | ||
}, | ||
"tracingExclusions": [0, 6, 7, 8, 9] | ||
} |
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