Skip to content

Commit dff3d8a

Browse files
Merge pull request #376 from theGreatHerrLebert/feature/intensity-variation-timsim-dda
removed openms deps, bumping version
2 parents c9140b7 + a76aec2 commit dff3d8a

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

imspy/imspy/simulation/isotopes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def weight(mass: float, peak_nums: NDArray, normalize: bool = True):
5353
norm = weights.sum()
5454
return weights / norm
5555

56-
56+
"""
5757
def get_pyopenms_weights(sequence: str, peak_nums: ArrayLike, generator: pyopenms.CoarseIsotopePatternGenerator):
5858
5959
n = peak_nums.shape[0]
@@ -64,6 +64,7 @@ def get_pyopenms_weights(sequence: str, peak_nums: ArrayLike, generator: pyopenm
6464
distribution = generator.run(formula)
6565
intensities = [i.getIntensity() for i in distribution.getContainer()]
6666
return intensities
67+
"""
6768

6869

6970
@numba.jit(nopython=True)

imspy/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "imspy"
3-
version = "0.3.21"
3+
version = "0.3.22"
44
description = "A Python package for analyzing timsTOF ion mobility spectrometry data, including tools for raw data acccess and simulation."
55
authors = [
66
{ name = "theGreatHerrLebert", email = "davidteschner@googlemail.com" }
@@ -19,7 +19,7 @@ dependencies = [
1919
"wandb>=0.12.1",
2020
"mokapot>=0.10.0",
2121
"sagepy>=0.3.12",
22-
"imspy-connector>=0.3.21",
22+
"imspy-connector>=0.3.22",
2323
"scipy>=1.7.1",
2424
"tqdm>=4.66",
2525
"pyarrow>=13.0",
@@ -28,7 +28,6 @@ dependencies = [
2828
"toml>=0.10.2",
2929
"koinapy>=0.0.10",
3030
"poetry (>=2.0.0,<3.0.0)",
31-
"pyopenms (>=3.2.0,<4.0.0)",
3231
"qdarkstyle >=3.2.3",
3332
"pyqt5 >=5.15.11",
3433
"vtk >=9.5.0",

imspy_connector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "imspy-connector"
3-
version = "0.3.21"
3+
version = "0.3.22"
44
edition = "2021"
55

66
[lib]

imspy_connector/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "imspy_connector"
77
dependencies = [
88
"opentims-bruker-bridge>=1.1.0",
99
]
10-
version = "0.3.21"
10+
version = "0.3.22"
1111
requires-python = ">=3.11"
1212
classifiers = [
1313
"Programming Language :: Rust",

0 commit comments

Comments
 (0)