From 5ece241db6185b58f2b17275a455e1d71f5c1052 Mon Sep 17 00:00:00 2001 From: Anthony Simard Date: Fri, 14 Aug 2020 16:07:45 -0700 Subject: [PATCH] BUG: Goes along with Oddant1/q2-demux#118 --- q2_types/per_sample_sequences/_format.py | 3 +++ 1 file changed, 3 insertions(+) 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)