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

fix

parent eb15a27c
No related merge requests found
......@@ -21,9 +21,10 @@ def go(args):
df = pandas.read_csv(args.data)
print(df)
bad = (
df.loc[df.measurement_kind == "mass_spec"].measurement_inequality
!= "<")
bad = df.loc[
(df.measurement_kind == "mass_spec") &
(df.measurement_inequality != "<")
]
assert len(bad) == 0, bad
if args.ms_only:
......
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