-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add support for cumulative counts at different levels #82
Comments
Here's a query and the results that could be used to get the number of studies in a cohort. The query would return a list of the distinct StudyInstanceUIDs in the cohort. I set the page_size=0, so 0 rows are returned, but the totalFound field shows that there are 153 studies in the cohort. Instead of StudyInstanceUID, one can specify Collection_ID, Patient_ID, SeriesInstanceUID or SOPInstanceUID to get corresponding counts:
|
re: Series: how many slices, what is the series size (probably in MB, for brevity) I guess the API could reject such a query or any query that doesn't have series or instance granularity. Or the field ID could be 'size' and the API would return a size at the granularity of the row. So if manifest is instance level, then size is instance size; if granularity is series level, then size is series size, etc. If we were to do this, the column ID should probably indicate the granularlity: instance_size, series_size, etc, Or like above, but the API would return the size at the row granularity and all higher granularities. E.G. if the manifest has series granularity, the there would be series_size, study_size, patient_size and collection_size columns. |
Whenever selected level of data hierarchy is queried, it would be helpful to know characteristics of the hierarchy item, such as:
Would this be possible?
The text was updated successfully, but these errors were encountered: