Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Minot committed Apr 25, 2020
1 parent b773f35 commit 977c0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/general.nf
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ tax_df = pd.concat([
lambda v: v.apply(merged_df.set_index("old")["new"].get) if v.name == "tax_id" else v
)
]).reset_index()
assert tax_df["tax_id"].apply(lambda n: "\n" not in str(n)).all()
assert tax_df["tax_id"].apply(lambda n: "\\n" not in str(n)).all()
# Write to CSV
print("Writing out final CSV")
Expand Down

0 comments on commit 977c0bc

Please sign in to comment.