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

Fix str in pool step.

parent cf75becc
No related merge requests found
Pipeline #2040 failed with stages
in 5 hours, 6 minutes, and 22 seconds
......@@ -247,7 +247,7 @@ def main():
path_to_pool_control = cwd + '/' + pool_control
if control_df.values.max() > 1.2:
logger.info("Number of reads in controls differ by " +
" > factor of %f. Using pooled controls." % (cutoff_ratio))
" > factor of %f. Using pooled controls." % (str(cutoff_ratio)))
design_new_df['control_tag_align'] = path_to_pool_control
else:
for index, row in design_new_df.iterrows():
......
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