Skip to content

Commit 1bc68bc

Browse files
pass CCS flag
1 parent 8d0333e commit 1bc68bc

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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.2.24] - 2023-11-14
9+
10+
- Pass flag CCS feature extract
11+
812
# [2.2.23] - 2023-11-13
913

1014
- Reintroduce ability to predict CCS

deeplc/deeplc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def do_f_extraction(self, seqs, mods, identifiers, charges=[]):
328328

329329
psm_list = PSMList(psm_list=list_of_psms)
330330

331-
return self.f_extractor.full_feat_extract(psm_list)
331+
return self.f_extractor.full_feat_extract(psm_list,predict_ccs=self.predict_ccs)
332332

333333
def do_f_extraction_pd(self,
334334
df_instances,
@@ -360,7 +360,7 @@ def do_f_extraction_pd(self,
360360

361361
psm_list = PSMList(psm_list=list_of_psms)
362362

363-
return self.f_extractor.full_feat_extract(psm_list)
363+
return self.f_extractor.full_feat_extract(psm_list,predict_ccs=self.predict_ccs)
364364

365365
def do_f_extraction_pd_parallel(self, df_instances):
366366
"""
@@ -421,7 +421,7 @@ def do_f_extraction_psm_list(
421421
pd.DataFrame
422422
feature matrix
423423
"""
424-
return self.f_extractor.full_feat_extract(psm_list)
424+
return self.f_extractor.full_feat_extract(psm_list,predict_ccs=self.predict_ccs)
425425

426426
def do_f_extraction_psm_list_parallel(
427427
self,

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.2.23',
9+
version='2.2.24',
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)