Skip to content

Commit

Permalink
Merge pull request #2 from bokulich-lab/pipe
Browse files Browse the repository at this point in the history
use rarefied table in pipeline
  • Loading branch information
nbokulich authored Nov 4, 2024
2 parents 4e0f40c + 03626f7 commit 9c9cb7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions q2_kmerizer/_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ def core_metrics(ctx, sequences, table, sampling_depth, metadata,
with_replacement=with_replacement)
results.append(rarefied_table)

kmer_table, = kmerize(sequences, table, kmer_size, tfidf, max_df, min_df,
max_features)
kmer_table, = kmerize(sequences, rarefied_table, kmer_size, tfidf, max_df,
min_df, max_features)
results.append(kmer_table)

for metric in (observed_features, shannon):
Expand Down

0 comments on commit 9c9cb7e

Please sign in to comment.