Skip to content
Snippets Groups Projects
Commit 8600f277 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

fix

parent 9f3ecb6e
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ def go(args): ...@@ -34,7 +34,7 @@ def go(args):
print("Filtering to MS only") print("Filtering to MS only")
df = df.loc[df.measurement_kind == "mass_spec"].copy() df = df.loc[df.measurement_kind == "mass_spec"].copy()
if args.set_measurement_value: if args.set_measurement_value is not None:
indexer = df.measurement_kind == "mass_spec" indexer = df.measurement_kind == "mass_spec"
df.loc[ df.loc[
indexer, indexer,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment