Skip to content

Commit

Permalink
fix data reading
Browse files Browse the repository at this point in the history
  • Loading branch information
sterrettJD committed May 9, 2024
1 parent d2ed82c commit bfe9d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rule_utils/counts_to_tpm.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def main():
Path(args.output).touch()
return

raw_data = pd.read_csv(args.readcounts)
raw_data = pd.read_csv(args.readcounts, sep="\t", comment="#")
tpm = convert_dataframe(raw_data)
tpm.to_csv(args.output, sep="\t")

Expand Down

0 comments on commit bfe9d0a

Please sign in to comment.