You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

33 lines
1.5 KiB

  1. import pysam.utils
  2. annotate = pysam.utils.PysamDispatcher('bcftools', 'annotate')
  3. call = pysam.utils.PysamDispatcher('bcftools', 'call')
  4. cnv = pysam.utils.PysamDispatcher('bcftools', 'cnv')
  5. concat = pysam.utils.PysamDispatcher('bcftools', 'concat')
  6. consensus = pysam.utils.PysamDispatcher('bcftools', 'consensus')
  7. convert = pysam.utils.PysamDispatcher('bcftools', 'convert')
  8. csq = pysam.utils.PysamDispatcher('bcftools', 'csq')
  9. filter = pysam.utils.PysamDispatcher('bcftools', 'filter')
  10. gtcheck = pysam.utils.PysamDispatcher('bcftools', 'gtcheck')
  11. head = pysam.utils.PysamDispatcher('bcftools', 'head')
  12. index = pysam.utils.PysamDispatcher('bcftools', 'index')
  13. isec = pysam.utils.PysamDispatcher('bcftools', 'isec')
  14. merge = pysam.utils.PysamDispatcher('bcftools', 'merge')
  15. mpileup = pysam.utils.PysamDispatcher('bcftools', 'mpileup')
  16. norm = pysam.utils.PysamDispatcher('bcftools', 'norm')
  17. plugin = pysam.utils.PysamDispatcher('bcftools', 'plugin')
  18. query = pysam.utils.PysamDispatcher('bcftools', 'query')
  19. reheader = pysam.utils.PysamDispatcher('bcftools', 'reheader')
  20. roh = pysam.utils.PysamDispatcher('bcftools', 'roh')
  21. sort = pysam.utils.PysamDispatcher('bcftools', 'sort')
  22. stats = pysam.utils.PysamDispatcher('bcftools', 'stats')
  23. view = pysam.utils.PysamDispatcher('bcftools', 'view')
  24. __all__ = [
  25. 'annotate', 'call', 'cnv', 'concat', 'consensus',
  26. 'convert', 'csq', 'filter', 'gtcheck', 'head',
  27. 'index', 'isec', 'merge', 'mpileup', 'norm',
  28. 'plugin', 'query', 'reheader', 'roh', 'sort',
  29. 'stats', 'view',
  30. ]