Skip to content

Commit ba69f6e

Browse files
fix calibration default GUI
1 parent 1514a02 commit ba69f6e

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
# [2.1.6] - 2023-05-09
9+
10+
### Changed
11+
- fix setting GUI calibration default
12+
813
# [2.1.5] - 2023-05-08
914

1015
### Changed

deeplc/_argument_parser.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ def parse_arguments(gui=False):
139139
calibration_group.add_argument(
140140
"--pygam_calibration",
141141
dest="pygam_calibration",
142-
default=True,
142+
action="store_true",
143+
#default=True,
143144
help=(
144145
"use pyGAM generalized additive model as calibration method; "
145146
"recommended; default"
@@ -150,8 +151,8 @@ def parse_arguments(gui=False):
150151
calibration_group.add_argument(
151152
"--transfer_learning",
152153
dest="transfer_learning",
153-
#action="store_false",
154-
default=False,
154+
action="store_false",
155+
#default=False,
155156
help="use transfer learning as calibration method",
156157
**gooey_args["transfer_learning"]
157158
)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='deeplc',
9-
version='2.1.5',
9+
version='2.1.6',
1010
license='apache-2.0',
1111
description='DeepLC: Retention time prediction for (modified) peptides using Deep Learning.',
1212
long_description=LONG_DESCRIPTION,

0 commit comments

Comments
 (0)