Skip to content

Commit

Permalink
fix calibration default cmd line
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbinBouwmeester committed May 9, 2023
1 parent ba69f6e commit d9a7ae5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 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.7] - 2023-05-09

### Changed
- fix setting cmd line calibration default

# [2.1.6] - 2023-05-09

### Changed
Expand Down
2 changes: 1 addition & 1 deletion deeplc/_argument_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def parse_arguments(gui=False):
"--transfer_learning",
dest="transfer_learning",
action="store_false",
#default=False,
default=False,
help="use transfer learning as calibration method",
**gooey_args["transfer_learning"]
)
Expand Down
5 changes: 4 additions & 1 deletion deeplc/deeplc.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,10 @@ def __init__(
pygam_calibration=True,
deepcallc_mod=False,
deeplc_retrain=False,
):
):
# Force pygam calibration... TODO fix this
pygam_calibration=True

# if a config file is defined overwrite standard parameters
if config_file:
cparser = ConfigParser()
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.6',
version='2.1.7',
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 d9a7ae5

Please sign in to comment.