Skip to content

Commit

Permalink
Merge pull request #147 from MannLabs/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
jalew188 committed Mar 16, 2024
2 parents 0bb192c + 1334c39 commit 8317f47
Show file tree
Hide file tree
Showing 18 changed files with 481 additions and 469 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.6
current_version = 1.1.7
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
copyright = '2022, Mann Labs, MPIB'
author = 'Mann Labs, MPIB'

release = "1.1.6"
release = "1.1.7"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion peptdeep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# pass

__project__ = "peptdeep"
__version__ = "1.1.6"
__version__ = "1.1.7"
__license__ = "Apache 2.0"
__description__ = "The AlphaX deep learning framework for Proteomics"
__author__ = "Mann Labs"
Expand Down
1 change: 1 addition & 0 deletions peptdeep/model/ms2.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,7 @@ def _set_batch_predict_data(self,
else:
update_sliced_fragment_dataframe(
self.predict_df,
self.predict_df.to_numpy(copy=True),
predicts.reshape(
(-1, len(self.charged_frag_types))
),
Expand Down
2 changes: 1 addition & 1 deletion peptdeep/spec_lib/predict_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def predict_all(self,
)
else:
self._precursor_df = calc_precursor_isotope_mp(
self._precursor_df, process_bar=process_bar
self._precursor_df, progress_bar=process_bar
)
if self.model_manager.verbose:
logging.info(f'Predicting RT/IM/MS2 for {len(self._precursor_df)} precursors ...')
Expand Down
Loading

0 comments on commit 8317f47

Please sign in to comment.