We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8669cda commit 537cc48Copy full SHA for 537cc48
micom/workflows/media.py
@@ -25,7 +25,7 @@ def process_medium(medium, samples):
25
elif not all(s in medium.sample_id.unique() for s in samples):
26
missing = [s for s in samples if s not in medium.sample_id.unique()]
27
raise ValueError(
28
- "The medium is missing samples from the manifest: {', '.join(missing)}."
+ f"The medium is missing samples from the manifest: {', '.join(missing)}."
29
)
30
return medium.drop_duplicates(subset=["reaction", "sample_id"])
31
0 commit comments