Skip to content

Commit

Permalink
fix calibration default GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbinBouwmeester committed May 9, 2023
1 parent 1514a02 commit ba69f6e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [2.1.6] - 2023-05-09

### Changed
- fix setting GUI calibration default

# [2.1.5] - 2023-05-08

### Changed
Expand Down
7 changes: 4 additions & 3 deletions deeplc/_argument_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ def parse_arguments(gui=False):
calibration_group.add_argument(
"--pygam_calibration",
dest="pygam_calibration",
default=True,
action="store_true",
#default=True,
help=(
"use pyGAM generalized additive model as calibration method; "
"recommended; default"
Expand All @@ -150,8 +151,8 @@ def parse_arguments(gui=False):
calibration_group.add_argument(
"--transfer_learning",
dest="transfer_learning",
#action="store_false",
default=False,
action="store_false",
#default=False,
help="use transfer learning as calibration method",
**gooey_args["transfer_learning"]
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='deeplc',
version='2.1.5',
version='2.1.6',
license='apache-2.0',
description='DeepLC: Retention time prediction for (modified) peptides using Deep Learning.',
long_description=LONG_DESCRIPTION,
Expand Down

0 comments on commit ba69f6e

Please sign in to comment.