Skip to content

Commit 9aaf4a8

Browse files
committed
added config file
1 parent 15aa09d commit 9aaf4a8

34 files changed

+72
-15
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/call.py renamed to mity/call.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
import subprocess
44
import logging
55
import os.path
6+
import configparser
67
from .util import tabix, check_missing_file, create_prefix, bam_get_mt_contig, bam_has_RG
78
from .normalise import do_normalise as vcfnorm
89

10+
config = configparser.ConfigParser()
11+
912
def do_call(bam_files, reference, genome=None, prefix=None, min_mq=30, min_bq=24,
1013
min_af=0.01, min_ac=4, p=0.002, normalise=True,
1114
out_folder_path=".", region=None):

0 commit comments

Comments
 (0)