Skip to content
Snippets Groups Projects
Commit 077b9174 authored by Coda Phillips's avatar Coda Phillips
Browse files

Don't filter results

parent 6acaf5c2
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ class BaseCheckList:
def compute(self, frame):
# Filter bad records from previous level
filtered_frame = frame.ix[frame.qc_percent < 1].copy()
filtered_frame = frame.copy()#.ix[frame.qc_percent < 1].copy()
for check in self.checks:
original_shape = filtered_frame.shape
filtered_frame = check(filtered_frame, self.parameters)
......
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