Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
better settings
  • Loading branch information
proost committed May 22, 2017
1 parent 5e0883e commit 10f0f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detector.py
Expand Up @@ -120,7 +120,7 @@ def analyze(blast_results, output):

for line in blast_results:
data = read_blast_line(line)
if data['pident'] > 70:
if data['pident'] > 70 and data['evalue'] < 0.05 and data['length'] > 50:
transposable_elements.add(data['qseqid'])

if len(transposable_elements) > 0:
Expand Down

0 comments on commit 10f0f3a

Please sign in to comment.