-
Notifications
You must be signed in to change notification settings - Fork 0
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
Data portal - how manifest_set records should look in the UI #1463
Comments
For the MS-related use case: |
Business rules should be as follows: Acceptance criteria: |
@naglepuff would you please t-shirt size this task when you have a chance. |
Ok, here are some initial thoughts I have on this task after some clarifying discussion on slack with @aclum My understanding of On the Data Portal, specifically the "Data Type" bar chart (and probably the counts for the flyout for the "Data Type" facet), different For example, I have: manifest_set = [
{ id: "m1", manifest_category: "poolable_replicates" }
]
data_generation_set = [
{ id: "dg1", has_output: "do1" ... },
{ id: "dg2", has_output: "do2" ... },
{ id: "dg3", has_output: "do3" ... },
]
data_object_set = [
{ id: "do1", was_generated_by: "dg1", in_manifest: ["m1"] ... },
{ id: "do2", was_generated_by: "dg2", in_manifest: ["m1"] ... },
{ id: "do3", was_generated_by: "dg3", in_manifest: ["m1"] ... },
] Then for any query from the data portal whose results in include some subset of Currently, the counts are determined by the BaseQuerySchema.facet method. This essentially does a In order to implement the change that this issue is describing we'd need to:
I will continue to dig in to estimates for these, but both (2) and (3) heavily depend on the design of (1), which will likely be the hardest part of this. I don't know what the T-shirt size would be, but I would expect this would take me anywhere from 1-2 sprints |
This ticket replaces #1365
The text was updated successfully, but these errors were encountered: