Mercurial > repos > glogobyte > isoread
changeset 23:6d3abc45aa49 draft
Uploaded
author | glogobyte |
---|---|
date | Wed, 20 Oct 2021 12:11:43 +0000 |
parents | 958330b9bce3 |
children | 1d8cdfb3a359 |
files | mirbase.py |
diffstat | 1 files changed, 2 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/mirbase.py Wed Oct 20 12:11:30 2021 +0000 +++ b/mirbase.py Wed Oct 20 12:11:43 2021 +0000 @@ -196,7 +196,7 @@ procs.extend([Process(target=make_spider,args=(merg_nam_control_group,merg_nam_treated_group,args.group1,args.group2))]) if args.anal == "1": - procs.extend([Process(target=pie_temp,args=(merg_nam_control_group,con_unmap_seq.value,con_unmap_counts.value,merg_nam_treated_group,tre_unmap_seq.value,tre_unmap_counts.value,group_name1,group_name2))]) + procs.extend([Process(target=pie_temp,args=(merg_nam_control_group,con_unmap_seq.value,con_unmap_counts.value,merg_nam_treated_group,tre_unmap_seq.value,tre_unmap_counts.value,args.group1,args.group2))]) [p.start() for p in procs] @@ -249,8 +249,6 @@ ############################## Detection of non-template ####################################### - starttime10 = time.time() - if args.anal == "2": # Initialization of the managers between the proccesses @@ -414,6 +412,5 @@ ps_write.join() [p.join() for p in ps1_matrix] procs1.join() - print('That took {} seconds'.format(time.time() - starttime10)) - print('That took {} seconds'.format(time.time() - starttime)) + print('Running time: {} seconds'.format(time.time() - starttime))