Skip to content

Commit

Permalink
Update results.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xthua authored Mar 29, 2021
1 parent 0627d41 commit c02ae88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BacAnt/Integron_Finder/integron_finder/results.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import colorlog
import pandas as pd
from pandas.io.common import EmptyDataError


_log = colorlog.getLogger(__name__)

Expand Down Expand Up @@ -55,7 +55,7 @@ def merge_results(*results_file):
for one_result in results_file:
try:
res = pd.read_csv(one_result, sep="\t", comment='#')
except EmptyDataError:
except:
continue
all_res.append(res)
if all_res:
Expand Down

0 comments on commit c02ae88

Please sign in to comment.