Skip to content

Commit 562b80b

Browse files
authored
Merge pull request #150 from wilhelm-lab/fix/percolator_features
add proteins to base_columns
2 parents ad4981a + 5d8efd3 commit 562b80b

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

.cookietemple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ full_name: Victor Giurcoiu
1515
email: victor.giurcoiu@tum.de
1616
project_name: spectrum_fundamentals
1717
project_short_description: Fundamentals public repo
18-
version: 0.7.6
18+
version: 0.7.7
1919
license: MIT

.github/release-drafter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name-template: "0.7.6 " # <<COOKIETEMPLE_FORCE_BUMP>>
2-
tag-template: 0.7.6 # <<COOKIETEMPLE_FORCE_BUMP>>
1+
name-template: "0.7.7 " # <<COOKIETEMPLE_FORCE_BUMP>>
2+
tag-template: 0.7.7 # <<COOKIETEMPLE_FORCE_BUMP>>
33
exclude-labels:
44
- "skip-changelog"
55

cookietemple.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.6
2+
current_version = 0.7.7
33

44
[bumpversion_files_whitelisted]
55
init_file = spectrum_fundamentals/__init__.py

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
# the built documents.
5353
#
5454
# The short X.Y version.
55-
version = "0.7.6"
55+
version = "0.7.7"
5656
# The full version, including alpha/beta/rc tags.
57-
release = "0.7.6"
57+
release = "0.7.7"
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "spectrum_fundamentals"
3-
version = "0.7.6" # <<COOKIETEMPLE_FORCE_BUMP>>
3+
version = "0.7.7" # <<COOKIETEMPLE_FORCE_BUMP>>
44
description = "Fundamental functions, annotation pipeline and constants for oktoberfest"
55
authors = ["Wilhelmlab at Technical University of Munich"]
66
license = "MIT"

spectrum_fundamentals/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__author__ = """The Oktoberfest development team (Wilhelmlab at Technical University of Munich)"""
66
__copyright__ = f"Copyright {datetime.now():%Y}, Wilhelmlab at Technical University of Munich"
77
__license__ = "MIT"
8-
__version__ = "0.7.6"
8+
__version__ = "0.7.7"
99

1010
import logging
1111
import logging.handlers

spectrum_fundamentals/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
@click.command()
8-
@click.version_option(version="0.7.6", message=click.style("spectrum_fundamentals Version: 0.7.6"))
8+
@click.version_option(version="0.7.7", message=click.style("spectrum_fundamentals Version: 0.7.7"))
99
def main() -> None:
1010
"""spectrum_fundamentals."""
1111

spectrum_fundamentals/metrics/percolator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ def __init__(
9494
"mass_analyzer",
9595
"mz_range",
9696
"collision_energy",
97+
"proteins",
9798
]
9899

99100
super().__init__(pred_intensities, true_intensities, mz)

0 commit comments

Comments
 (0)