From 8d019ed7a7c84770c90133e6f6846c18ac0ea04d Mon Sep 17 00:00:00 2001 From: WangHong007 <88552471+WangHong007@users.noreply.github.com> Date: Sat, 20 Jan 2024 12:59:27 +0800 Subject: [PATCH] try fix table_object issue --- pmultiqc/modules/quantms/sparklines.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmultiqc/modules/quantms/sparklines.py b/pmultiqc/modules/quantms/sparklines.py index eb58102..28c24c5 100755 --- a/pmultiqc/modules/quantms/sparklines.py +++ b/pmultiqc/modules/quantms/sparklines.py @@ -29,8 +29,8 @@ def plot(data, headers=None, pconfig=None, maxValue=0.0): for k, v in config.custom_plot_config[pconfig["id"]].items(): pconfig[k] = v - # Make a datatable object - dt = table_object.datatable(data, headers, pconfig) + # Make a DataTable object + dt = table_object.DataTable(data, headers, pconfig) # Collect unique sample names s_names = set()