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

Fix svtyper launcher

parent 79d5e2f3
No related branches found
No related tags found
1 merge request!7Svtyper parallel
......@@ -34,9 +34,9 @@ def launch(bamlist, input_vcf, output_vcf, threads):
vcf_in=input_vcf,
vcf_out=vcf_out,
cores=threads)
tabix_compress(vcf_out, output_vcf)
tabix_compress(vcf_out, output_vcf, True)
os.remove(vcf_out)
tabix_index(output_vcf)
tabix_index(output_vcf, force=True, preset="vcf")
except:
# Except all exception
traceback.print_exc()
......
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