Skip to content
Snippets Groups Projects
Commit 8fb753d7 authored by Sander Snoo's avatar Sander Snoo
Browse files

Store sequence metadata in qc_run

parent 34106a2b
No related branches found
No related tags found
No related merge requests found
......@@ -56,5 +56,9 @@ def qc_run(name, *args, quiet=False):
else:
m = Measure(*actions)
ds = m.run(loc_record={'name':name}, quiet=quiet)
if seq is not None:
data = m.get_data_set(loc_record={'name':name})
data.add_metadata(seq.metadata)
ds = m.run(quiet=quiet)
return ds
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