jpayne@69: import pysam.utils jpayne@69: jpayne@69: annotate = pysam.utils.PysamDispatcher('bcftools', 'annotate') jpayne@69: call = pysam.utils.PysamDispatcher('bcftools', 'call') jpayne@69: cnv = pysam.utils.PysamDispatcher('bcftools', 'cnv') jpayne@69: concat = pysam.utils.PysamDispatcher('bcftools', 'concat') jpayne@69: consensus = pysam.utils.PysamDispatcher('bcftools', 'consensus') jpayne@69: convert = pysam.utils.PysamDispatcher('bcftools', 'convert') jpayne@69: csq = pysam.utils.PysamDispatcher('bcftools', 'csq') jpayne@69: filter = pysam.utils.PysamDispatcher('bcftools', 'filter') jpayne@69: gtcheck = pysam.utils.PysamDispatcher('bcftools', 'gtcheck') jpayne@69: head = pysam.utils.PysamDispatcher('bcftools', 'head') jpayne@69: index = pysam.utils.PysamDispatcher('bcftools', 'index') jpayne@69: isec = pysam.utils.PysamDispatcher('bcftools', 'isec') jpayne@69: merge = pysam.utils.PysamDispatcher('bcftools', 'merge') jpayne@69: mpileup = pysam.utils.PysamDispatcher('bcftools', 'mpileup') jpayne@69: norm = pysam.utils.PysamDispatcher('bcftools', 'norm') jpayne@69: plugin = pysam.utils.PysamDispatcher('bcftools', 'plugin') jpayne@69: query = pysam.utils.PysamDispatcher('bcftools', 'query') jpayne@69: reheader = pysam.utils.PysamDispatcher('bcftools', 'reheader') jpayne@69: roh = pysam.utils.PysamDispatcher('bcftools', 'roh') jpayne@69: sort = pysam.utils.PysamDispatcher('bcftools', 'sort') jpayne@69: stats = pysam.utils.PysamDispatcher('bcftools', 'stats') jpayne@69: view = pysam.utils.PysamDispatcher('bcftools', 'view') jpayne@69: jpayne@69: __all__ = [ jpayne@69: 'annotate', 'call', 'cnv', 'concat', 'consensus', jpayne@69: 'convert', 'csq', 'filter', 'gtcheck', 'head', jpayne@69: 'index', 'isec', 'merge', 'mpileup', 'norm', jpayne@69: 'plugin', 'query', 'reheader', 'roh', 'sort', jpayne@69: 'stats', 'view', jpayne@69: ]