Mercurial > repos > blankenberg > naive_variant_caller
view tools/naive_variant_caller.py @ 8:d5f866df45ae
Uploaded
author | blankenberg |
---|---|
date | Thu, 29 Jan 2015 15:02:01 -0500 |
parents | 8398666758e3 |
children | ac0235d2d459 |
line wrap: on
line source
#Dan Blankenberg import sys import optparse from pyBamParser.bam import Reader from pyBamTools.genotyping.naive import VCFReadGroupGenotyper def main(): #Parse Command Line parser = optparse.OptionParser() parser.add_option( '-b', '--bam', dest='bam_file', action='append', type="string", default=[], help='BAM filename, optionally index filename. Multiple allowed.' ) parser.add_option( '-i', '--index', dest='index_file', action='append', type="string", default=[], help='optionally index filename. Multiple allowed.' ) parser.add_option( '-o', '--output_vcf_filename', dest='output_vcf_filename', action='store', default = None, type="string", help='Output VCF filename' ) parser.add_option( '-r', '--reference_genome_filename', dest='reference_genome_filename', action='store', default = None, type="string", help='Input reference file' ) parser.add_option( '-v', '--variants_only', dest='variants_only', action='store_true', default = False, help='Report only sites with a possible variant allele.' ) parser.add_option( '-s', '--use_strand', dest='use_strand', action='store_true', default = False, help='Report counts by strand' ) parser.add_option( '-p', '--ploidy', dest='ploidy', action='store', type="int", default=2, help='Ploidy. Default=2.' ) parser.add_option( '-d', '--min_support_depth', dest='min_support_depth', action='store', type="int", default=0, help='Minimum number of reads needed to consider a REF/ALT. Default=0.' ) parser.add_option( '-q', '--min_base_quality', dest='min_base_quality', action='store', type="int", default=None, help='Minimum base quality.' ) parser.add_option( '-m', '--min_mapping_quality', dest='min_mapping_quality', action='store', type="int", default=None, help='Minimum mapping.' ) parser.add_option( '-t', '--coverage_dtype', dest='coverage_dtype', action='store', type="string", default=None, help='dtype to use for coverage array' ) parser.add_option( '--allow_out_of_bounds_positions', dest='allow_out_of_bounds_positions', action='store_true', default = False, help='Allows out of bounds positions to not throw fatal errors' ) parser.add_option( '--safe', dest='safe', action='store_true', default = False, help='Perform checks to prevent certain errors. Is slower.' ) parser.add_option( '--region', dest='region', action='append', type="string", default=[], help='region' ) (options, args) = parser.parse_args() if len( options.bam_file ) == 0: print >>sys.stderr, 'You must provide at least one bam (-b) file.' parser.print_help( sys.stderr ) sys.exit( 1 ) if options.index_file: assert len( options.index_file ) == len( options.bam_file ), "If you provide a name for an index file, you must provide the index name for all bam files." bam_files = zip( options.bam_file, options.index_file ) else: bam_files = [ ( x, ) for x in options.bam_file ] if not options.reference_genome_filename: print >> sys.stderr, "Warning: Reference file has not been specified. Providing a reference genome is highly recommended." if options.output_vcf_filename: out = open( options.output_vcf_filename, 'wb' ) else: out = sys.stdout regions = [] if options.region: for region in options.region: region_split = region.split( ":" ) region = region_split.pop( 0 ) if region_split: region_split = filter( bool, region_split[0].split( '-' ) ) if region_split: if len( region_split ) != 2: print >> sys.stderr, "You must specify both a start and an end, or only a chromosome when specifying regions." cleanup_before_exit( tmp_dir ) sys.exit( 1 ) region = tuple( [ region ] + map( int, region_split ) ) regions.append( region ) coverage = VCFReadGroupGenotyper( map( lambda x: Reader( *x ), bam_files ), options.reference_genome_filename, dtype=options.coverage_dtype, min_support_depth=options.min_support_depth, min_base_quality=options.min_base_quality, min_mapping_quality=options.min_mapping_quality, restrict_regions=regions, use_strand=options.use_strand, allow_out_of_bounds_positions=options.allow_out_of_bounds_positions, safe=options.safe ) for line in coverage.iter_vcf( ploidy=options.ploidy, variants_only=options.variants_only ): out.write( "%s\n" % line ) out.close() if __name__ == "__main__": main()