Skip to content

Commit

Permalink
fixed tmt bug
Browse files Browse the repository at this point in the history
  • Loading branch information
daichengxin committed Aug 24, 2024
1 parent bedcb21 commit 25a6daa
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.9"
version = "0.0.10"
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.9"
__version__ = "0.0.10"
2 changes: 1 addition & 1 deletion quantmsutils/sdrf/extract_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def extract_sample_from_expdesign(cxt, expdesign: str) -> None:
for _, row in f_table.iterrows():
mixture_id = s_data_frame[s_data_frame["Sample"] == row["Sample"]][
"MSstats_Mixture"
]
].values[0]
sample_dt = sample_dt.append(
{"Spectra_Filepath": row["Spectra_Filepath"], "Sample": mixture_id},
ignore_index=True,
Expand Down

0 comments on commit 25a6daa

Please sign in to comment.