Skip to content

Commit

Permalink
remove unused transformer
Browse files Browse the repository at this point in the history
  • Loading branch information
adamovanja committed Nov 27, 2023
1 parent 7176ab8 commit aca7756
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions q2_fondue/types/_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ def _meta_fmt_to_metadata(ff):
return qiime2.Metadata(df)


def _meta_fmt_to_series(ff):
with ff.open() as fh:
s = pd.read_csv(fh, header=0, dtype='str').squeeze()
return s


def _series_to_meta_fmt(data: pd.Series, meta_fmt):
with meta_fmt.open() as fh:
data.to_csv(fh, sep='\t', header=True, index=False)
Expand Down

0 comments on commit aca7756

Please sign in to comment.