Skip to content

Commit

Permalink
Fix naming issue in CDS Search
Browse files Browse the repository at this point in the history
  • Loading branch information
lecorguille authored Oct 22, 2020
1 parent 3c7982d commit b200eb1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def remove_position_with_too_much_missing_data(bash_aa, bash_nuc, MIN_SPECIES_NB
OUTnuc=open("%s/%s" %(path_OUT2, new_name), "w")
for fasta_name in filtered_bash_nuc.keys():
seq_nuc = filtered_bash_nuc[fasta_name]
OUTnuc.write("%s\n" %fasta_name)
OUTnuc.write("%s\n" %fasta_name[0:3])
OUTnuc.write("%s\n" %seq_nuc)
OUTnuc.close()
else:
Expand All @@ -188,4 +188,4 @@ def remove_position_with_too_much_missing_data(bash_aa, bash_nuc, MIN_SPECIES_NB
print "\nTotal number of locus recorded = %d" %n0
print "\tTotal number of locus with no indels (SAVED) = %d" %good
print "\tTotal number of locus, when removing indel, wich are empty (EXCLUDED) = %d" %bad
print ""
print ""

0 comments on commit b200eb1

Please sign in to comment.