Skip to content

Commit

Permalink
Removing compelteness censoring
Browse files Browse the repository at this point in the history
  • Loading branch information
OrdiNeu committed May 28, 2024
1 parent fc43fab commit 6a1236c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions query_server/query_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,6 @@ def genomic_completeness():
if len(sample['transcriptomes']) > 0:
retVal[program_id]['transcriptomes'] += 1

retVal = censor_response(retVal)

return retVal, 200

@app.route('/discovery/programs')
Expand Down Expand Up @@ -405,9 +403,6 @@ def discovery_programs():
site_summary_stats['schemas_used'] = list(site_summary_stats['schemas_used'])
site_summary_stats['cases_missing_data'] = list(site_summary_stats['cases_missing_data'])

site_summary_stats = censor_response(site_summary_stats)
r = censor_response(r)

# Return both the site's aggregated return value and each individual programs'
ret_val = {
'site': site_summary_stats,
Expand Down

0 comments on commit 6a1236c

Please sign in to comment.