Skip to content

Commit

Permalink
Merge branch 'release/0.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
luis committed Nov 6, 2018
2 parents 9261857 + 3013fb6 commit 0de48a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taranis.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def nucleotide_to_protein_aligment (sample_seq, query_seq ) :

def get_alignment_for_indels (blast_db_name, qseq) :
#match_alignment =[]
cline = NcbiblastnCommandline(db=blast_db_name, evalue=0.001, perc_identity = 80, outfmt= 5, max_target_seqs=10, max_hsps=10,num_threads=3)
cline = NcbiblastnCommandline(db=blast_db_name, evalue=0.001, perc_identity = 80, outfmt= 5, max_target_seqs=10, max_hsps=10,num_threads=1)
out, err = cline(stdin = qseq)
psiblast_xml = StringIO(out)
blast_records = NCBIXML.parse(psiblast_xml)
Expand Down

0 comments on commit 0de48a6

Please sign in to comment.