Skip to content
Snippets Groups Projects
Commit f78b3a80 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix double if statement.

parent c0e0b003
Branches
Tags
No related merge requests found
......@@ -235,7 +235,7 @@ def main():
# Check controls against cutoff_ratio
# if so replace with pool_control
path_to_pool_control = cwd + '/' + pool_control
if if control_df.values.max() > 1.2:
if control_df.values.max() > 1.2:
logger.info("Number of reads in controls differ by " +
" > factor of %f. Using pooled controls." % (cutoff_ratio))
design_new_df['control_tag_align'] = path_to_pool_control
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment