Skip to content

Commit

Permalink
eratio issue
Browse files Browse the repository at this point in the history
  • Loading branch information
KateSakharova committed Jan 28, 2025
1 parent 1a99ce4 commit adc83b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/ratio_evalue_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ def ratio_evalue(vphmm_df, taxa_dict, evalue):
for i in range(len(vphmm_specific_df)):

query_name = vphmm_specific_df["query name"][i]
coord_to = vphmm_specific_df["hmm coord to"][i]
coord_from = vphmm_specific_df["hmm coord from"][i]
t_len = vphmm_specific_df["tlen"][i]
coord_to = float(vphmm_specific_df["hmm coord to"][i])
coord_from = float(vphmm_specific_df["hmm coord from"][i])
t_len = float(vphmm_specific_df["tlen"][i])

if query_name in query_list:
continue
Expand Down

0 comments on commit adc83b1

Please sign in to comment.