Mercurial > repos > iuc > vsnp_add_zero_coverage
comparison vsnp_add_zero_coverage.py @ 1:aed013f6b13b draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsnp commit 94e69abb568077267eb8b15ef624624e2899a750"
| author | iuc |
|---|---|
| date | Wed, 30 Sep 2020 19:07:47 +0000 |
| parents | 0ad85e7db2fc |
| children | 2e863710a2f0 |
comparison
equal
deleted
inserted
replaced
| 0:0ad85e7db2fc | 1:aed013f6b13b |
|---|---|
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 import argparse | 3 import argparse |
| 4 import multiprocessing | 4 import multiprocessing |
| 5 import os | 5 import os |
| 6 import pandas | |
| 7 import pysam | |
| 8 import queue | 6 import queue |
| 9 import re | 7 import re |
| 10 import shutil | 8 import shutil |
| 9 | |
| 10 import pandas | |
| 11 import pysam | |
| 11 from Bio import SeqIO | 12 from Bio import SeqIO |
| 12 | 13 |
| 13 INPUT_BAM_DIR = 'input_bam_dir' | 14 INPUT_BAM_DIR = 'input_bam_dir' |
| 14 INPUT_VCF_DIR = 'input_vcf_dir' | 15 INPUT_VCF_DIR = 'input_vcf_dir' |
| 15 OUTPUT_VCF_DIR = 'output_vcf_dir' | 16 OUTPUT_VCF_DIR = 'output_vcf_dir' |
