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

fix

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