Skip to content

Commit c6fe22c

Browse files
committed
Improve intensity axis styling and bump version
Updated the intensity axis title in annotate_peak.py to use bold formatting and increased the title font size. Bumped package version to 8.6.2 in setup.py and updated the download URL accordingly.
1 parent cbcd438 commit c6fe22c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

metbit/annotate_peak.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,8 @@ def pick_color(trace_key: str, group_key: str | None = None):
378378
linecolor="black",
379379
linewidth=2,
380380
mirror=False,
381-
title="Intensity",
382-
titlefont=dict(size=font_size+2, color="black"),
381+
title="<b>Intensity</b>",
382+
titlefont=dict(size=font_size*1.5, color="black"),
383383
tickfont=dict(size=max(font_size-2, 9), color="black"),
384384
exponentformat="power", # use 10^n style
385385
showexponent="all"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
setup(
1313
name = 'metbit',
1414
packages = ['metbit'],
15-
version = '8.6.1',
15+
version = '8.6.2',
1616
license='MIT',
1717
description = 'Metabolomics data analysis and visualization tools.',
1818
author = 'aeiwz',
1919
author_email = 'theerayut_aeiw_123@hotmail.com',
2020
url = 'https://github.com/aeiwz/metbit.git',
21-
download_url = 'https://github.com/aeiwz/metbit/archive/refs/tags/V8.6.1.tar.gz',
21+
download_url = 'https://github.com/aeiwz/metbit/archive/refs/tags/V8.6.2.tar.gz',
2222
keywords = ['Omics', 'Multivariate analysis', 'Visualization', 'Data Analysis', 'Metabolomics', 'Chemometrics'],
2323
install_requires=[
2424
'scikit-learn',

0 commit comments

Comments
 (0)