Skip to content

Commit

Permalink
FIX correct proportion for core
Browse files Browse the repository at this point in the history
Outdated value, fixing 90% threshold to 95% threshold.
  • Loading branch information
celiosantosjr authored and luispedro committed Apr 5, 2024
1 parent ec21a24 commit bddea5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion General_Scripts/07_taxonomy_core_analysis/utils/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def classificationprop(x):
Classify the prevalence percent
into different categories
'''
if x >= 90: return 'core'
if x >= 95: return 'core'
if x >= 50: return 'shell'
if x < 50: return 'accessory'

Expand Down

0 comments on commit bddea5c

Please sign in to comment.