Mercurial > repos > bgruening > find_subsequences
view find_subsequences.py @ 1:d882a0a75759 draft default tip
Uploaded
author | bgruening |
---|---|
date | Fri, 10 Apr 2015 06:49:30 -0400 |
parents | 7f39014f9404 |
children |
line wrap: on
line source
#!/usr/bin/env python import re import sys import argparse from Bio import SeqIO from Bio.Seq import Seq from Bio.SeqUtils import nt_search from Bio.Alphabet import generic_dna choices = ['embl', 'fasta', 'fastq-sanger', 'fastq', 'fastq-solexa', 'fastq-illumina', 'genbank', 'gb'] def find_pattern(seqs, pattern, outfile_path, strand): """ Finds all occurrences of a pattern in the a given sequence. Outputs sequence ID, start and end postion of the pattern. """ pattern = pattern.upper() rev_compl = Seq(pattern, generic_dna).complement() search_func = simple_pattern_search if set(pattern).difference(set('ATCG')): search_func = complex_pattern_search with open(outfile_path, 'w+') as outfile: for seq in seqs: if strand in ['both', 'forward']: search_func(seq, pattern, outfile) if strand in ['both', 'reverse']: search_func(seq, rev_compl, outfile, '-') def simple_pattern_search(sequence, pattern, outfile, strand='+'): """ Simple regular expression search. This is way faster than the complex search. """ bed_template = '%s\t%s\t%s\t%s\t%s\t%s\n' for match in re.finditer( str(pattern), str(sequence.seq) ): outfile.write(bed_template % (sequence.id, match.start(), match.end(), sequence.description, '', strand)) def complex_pattern_search(sequence, pattern, outfile, strand='+'): """ Searching for pattern with biopyhon's nt_search(). This allows for ambiguous values, like N = A or T or C or G, R = A or G ... """ l = len(pattern) matches = nt_search(str(sequence.seq), pattern) bed_template = '%s\t%s\t%s\t%s\t%s\t%s\n' for match in matches[1:]: outfile.write(bed_template % (sequence.id, match, match+l, sequence.description, '', strand) ) if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument('-i', '--input', required=True) parser.add_argument('-o', '--output', required=True) parser.add_argument('-p', '--pattern', required=True) parser.add_argument('--strand', choices=['both', 'forward', 'reverse'], default='both') parser.add_argument('-f', '--format', default="fasta", choices=choices) args = parser.parse_args() with open(args.input) as handle: find_pattern( SeqIO.parse(handle, args.format), args.pattern, args.output, args.strand )