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

Replace os.popen by os.system

parent 64dabeeb
No related branches found
No related tags found
No related merge requests found
......@@ -911,7 +911,7 @@ def init(output, vcf_files, true_vcf, rules, filtered_vcfs=None, type_v="del", o
# Build HTML summary:
ipynb = os.path.join(output, "Summarized_results.ipynb")
os.popen("jupyter nbconvert --to html --template basic --execute %s" % ipynb)
os.system("jupyter nbconvert --to html --template basic --execute %s" % ipynb)
print_results(nb_records, orphans, with_xlsx, output, do_genotype)
......
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