diff --git a/q2_types/per_sample_sequences/_format.py b/q2_types/per_sample_sequences/_format.py index b34ccd21..83c9d250 100644 --- a/q2_types/per_sample_sequences/_format.py +++ b/q2_types/per_sample_sequences/_format.py @@ -315,6 +315,9 @@ def manifest(self): if 'reverse' not in df: df['reverse'] = None + if 'forward' not in df: + df['forward'] = None + def munge_fn_closure(val): if val is not None: return str(self.path / pathlib.Path(val).name)