Skip to content
Snippets Groups Projects
Commit d15924cc authored by Floreal Cabanettes's avatar Floreal Cabanettes
Browse files

Fix type

parent 0cb9738e
No related branches found
No related tags found
No related merge requests found
......@@ -149,8 +149,8 @@ rule buildpop:
"-q",
"-md", str(params.min_deletions),
"-mi", str(params.min_inversions),
"-fd", " ".join(params.freq_del),
"-fi", " ".join(params.freq_inv),
"-fd", " ".join(map(str,params.freq_del)),
"-fi", " ".join(map(str,params.freq_inv)),
"--max-try", str(params.max_try),
"-t", str(threads),
"-e"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment