From 437149923570d52f6eedad9be7ba94c6095fbb24 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Tue, 6 Mar 2012 16:34:21 -0800 Subject: [PATCH] Forgot to add split attribute to __eq__ test. --- htsworkflow/pipelines/sequences.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/htsworkflow/pipelines/sequences.py b/htsworkflow/pipelines/sequences.py index 69681fa..772af7b 100644 --- a/htsworkflow/pipelines/sequences.py +++ b/htsworkflow/pipelines/sequences.py @@ -83,7 +83,15 @@ class SequenceFile(object): """ Equality is defined if everything but the path matches """ - attributes = ['filetype','flowcell', 'lane', 'read', 'pf', 'cycle', 'project', 'index'] + attributes = ['filetype', + 'flowcell', + 'lane', + 'read', + 'pf', + 'cycle', + 'project', + 'index', + 'split'] for a in attributes: if getattr(self, a) != getattr(other, a): return False -- 2.30.2