We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a104618 commit b681403Copy full SHA for b681403
core/utils/bioinfo_analysis.py
@@ -88,7 +88,9 @@ def get_bioinfo_analyis_fields_utilization(schema_obj=None):
88
b_data["fields_value"][f_name] = 0
89
continue
90
# b_data[schema_name][f_name] = [count]
91
- count_not_empty = b_field_obj_info.exclude(value__in=["None", "Not Provided", ""]).count()
+ count_not_empty = b_field_obj_info.exclude(
92
+ value__in=["None", "Not Provided", ""]
93
+ ).count()
94
b_data["fields_value"][f_name] = count_not_empty
95
if count_not_empty == 0:
96
b_data["always_none"].append(f_name)
0 commit comments