# HG changeset patch # User artbio # Date 1615403406 0 # Node ID caa54ff096c8511db99f75222158ee31bd8f3eec # Parent fffdb903f2d1dd498754c267c7464f569e3e9379 "planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/blast_unmatched commit 3dcf4e7314dd6a4fefcd721ac58c8130dd1da2a1" diff -r fffdb903f2d1 -r caa54ff096c8 blast_unmatched.py --- a/blast_unmatched.py Sun Oct 15 19:30:10 2017 -0400 +++ b/blast_unmatched.py Wed Mar 10 19:10:06 2021 +0000 @@ -40,7 +40,7 @@ """ output_file_handle = open(output_file, 'w') unmatched = False - end = re.compile(".+\W$") + end = re.compile(r".+\W$") with open(fasta_file, 'r') as infile: for line in infile: if line.startswith('>'): diff -r fffdb903f2d1 -r caa54ff096c8 blast_unmatched.xml --- a/blast_unmatched.xml Sun Oct 15 19:30:10 2017 -0400 +++ b/blast_unmatched.xml Wed Mar 10 19:10:06 2021 +0000 @@ -1,6 +1,7 @@ - + get query sequences that didn't get a match during a blast + python