We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 483a746 commit 93e91e7Copy full SHA for 93e91e7
src/encode_task_spp.py
@@ -67,7 +67,7 @@ def spp(ta, ctl_ta, chrsz, fraglen, cap_num_peak, fdr_thresh,
67
basename_prefix = '{}_x_{}'.format(basename_ta, basename_ctl_ta)
68
if len(basename_prefix) > 200: # UNIX cannot have filename > 255
69
basename_prefix = '{}_x_control'.format(basename_ta)
70
- nth_param = '-p={}'.format(nth) if nth < 2 else ''
+ nth_param = '-p={}'.format(nth) if nth >= 2 else ''
71
prefix = os.path.join(out_dir, basename_prefix)
72
rpeak = '{}.{}.regionPeak.gz'.format(
73
prefix,
0 commit comments