Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve force calling #29

Merged
merged 3 commits into from
Jan 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix a bug
  • Loading branch information
Meltpinkg committed Jan 23, 2021
commit 4cc2ed109b308c3909ef4eb6240eb8521d953461
8 changes: 4 additions & 4 deletions src/cuteSV/cuteSV
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def main_ctrl(args, argv):
if pos < local_ref_len:
Task_list.append([i[0], pos, local_ref_len])

'''
#'''
analysis_pools = Pool(processes=int(args.threads))
os.mkdir("%ssignatures"%temporary_dir)
for i in Task_list:
Expand All @@ -641,8 +641,8 @@ def main_ctrl(args, argv):
analysis_pools.map_async(multi_run_wrapper, para)
analysis_pools.close()
analysis_pools.join()
'''
'''
#'''
#'''
logging.info("Rebuilding signatures of structural variants.")
analysis_pools = Pool(processes=int(args.threads))
cmd_del = ("cat %ssignatures/*.bed | grep DEL | sort -u | sort -k 2,2 -k 3,3n > %sDEL.sigs"%(temporary_dir, temporary_dir))
Expand All @@ -654,7 +654,7 @@ def main_ctrl(args, argv):
analysis_pools.map_async(exe, (i,))
analysis_pools.close()
analysis_pools.join()
'''
#'''
result = list()

if args.Ivcf != None:
Expand Down