Skip to content

Commit 8be914f

Browse files
committed
Removing inference - good catch @ElDeveloper\!
1 parent d1bee5e commit 8be914f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

qiita_db/analysis.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -746,9 +746,9 @@ def _build_mapping_file(self, samples, conn_handler=None):
746746
qiime_map_fp = conn_handler.execute_fetchall(sql, (pid,))[0][1]
747747
# Parse the mapping file
748748
qiime_map = pd.read_csv(
749-
join(fp, qiime_map_fp), sep='\t', infer_datetime_format=True,
750-
keep_default_na=False, na_values=['unknown'], parse_dates=True,
751-
index_col=False, converters=defaultdict(lambda: str))
749+
join(fp, qiime_map_fp), sep='\t', keep_default_na=False,
750+
na_values=['unknown'], index_col=False,
751+
converters=defaultdict(lambda: str))
752752
qiime_map.set_index('#SampleID', inplace=True, drop=True)
753753
qiime_map = qiime_map.loc[samples]
754754

0 commit comments

Comments
 (0)