Skip to content

Commit

Permalink
address comment from @antgonza
Browse files Browse the repository at this point in the history
  • Loading branch information
wasade committed Feb 22, 2022
1 parent d060c0c commit ae21189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion q2_katharoseq/_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def read_count_threshold(
df['correct_assign'] = df['control_reads'] / df['asv_reads']

# DEFINE KATHARO
katharo = df[['correct_assign', 'control_reads', 'asv_reads']]
katharo = df[['correct_assign', 'control_reads', 'asv_reads']].copy()
katharo['log_asv_reads'] = np.log10(katharo['asv_reads'].values)

# FIT CURVE TO DATA
Expand Down

0 comments on commit ae21189

Please sign in to comment.