Skip to content

Commit

Permalink
summarise: exclude-off-target Output extras when asked.
Browse files Browse the repository at this point in the history
  • Loading branch information
wwood committed Oct 31, 2024
1 parent f9045bb commit ce9a3eb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion singlem/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,10 @@ def get_min_taxon_coverage(args, subparser='pipe'):
else:
mpkg = Metapackage.acquire_default()
pkgs = mpkg.singlem_packages
o2.otu_table_objects.append(otus.exclude_off_target_hits(pkgs))
# Do not lose the extra columns if they are provided as input by
# using return_archive_table=True. Currently an issue here that it
# doesn't error when extra info is not provided as input.
o2.otu_table_objects.append(otus.exclude_off_target_hits(pkgs, return_archive_table=True))
otus = o2

if args.krona:
Expand Down

0 comments on commit ce9a3eb

Please sign in to comment.