Skip to content

Commit

Permalink
Update wic_engine.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhijianZhou01 authored Dec 18, 2024
1 parent 83026a0 commit b1cfadf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virusrecom/wic_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def gap_processing(seq_df,gaps_use):

old_site_label = list(seq_df.columns)

seq_pd_clean = seq_df[~seq_df.isin(["-"])].dropna(axis=1) # 去除含有gap的列(位点)
seq_pd_clean = seq_df[~seq_df.isin(["-"])].dropna(axis=1,how='any') # 去除含有gap的列(位点)

new_site_label = list(seq_pd_clean.columns)

Expand Down

0 comments on commit b1cfadf

Please sign in to comment.