Skip to content

Commit

Permalink
Merge pull request #24 from bigbio/dev
Browse files Browse the repository at this point in the history
Bug fixed
  • Loading branch information
ypriverol authored Aug 15, 2024
2 parents 0af595a + c315d94 commit d7e5aa7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "quantms-utils"
version = "0.0.7"
version = "0.0.8"
description = "Python scripts and helpers for the quantMS workflow"
authors = ["Yasset Perez-Riverol", "Dai Chengxin"]
packages = [
Expand Down
2 changes: 1 addition & 1 deletion quantmsutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.7"
__version__ = "0.0.8"
2 changes: 1 addition & 1 deletion quantmsutils/features/snr.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def spectrum2feature(ctx, ms_path: str, idxml: str, output: str) -> None:
# Add quantms:SNR as a feature
search_parameters = protein_ids[0].getSearchParameters()
features = search_parameters.getMetaValue("extra_features")
extra_features = features + ",quantms:SNR, quantms:SpectralEntropy, quantms:FracTICinTop10Peaks, quantms:WeightedStdMz"
extra_features = features + ",quantms:SNR,quantms:SpectralEntropy,quantms:FracTICinTop10Peaks,quantms:WeightedStdMz"
search_parameters.setMetaValue("extra_features", extra_features)
protein_ids[0].setSearchParameters(search_parameters)

Expand Down

0 comments on commit d7e5aa7

Please sign in to comment.