Skip to content

Commit

Permalink
fix for barcoded stats as reported in #384
Browse files Browse the repository at this point in the history
  • Loading branch information
wdecoster committed Oct 17, 2024
1 parent da7cd00 commit 5a14ba2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nanoplot/NanoPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def make_stats(datadf, settings, suffix, tsv_stats=True):
logging.info("Calculated statistics")
if settings["barcoded"]:
barcodes = list(datadf["barcode"].unique())
statsfile = settings["path"] + "NanoStats_barcoded.txt"
statsfile = settings["path"] + "NanoStats_barcoded" + suffix + ".txt"
stats_df = nanomath.write_stats(
datadfs=[datadf[datadf["barcode"] == b] for b in barcodes],
outputfile=statsfile,
Expand Down
2 changes: 1 addition & 1 deletion nanoplot/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.43.0"
__version__ = "1.43.1"

0 comments on commit 5a14ba2

Please sign in to comment.