Skip to content

Commit

Permalink
fix: Windows/DOS line endings in metadata_raw.tsv
Browse files Browse the repository at this point in the history
This change fixes errors for tsv-utils downstream processing.
For example:

 [tsv-join] Error processing command line arguments: Windows/DOS line ending found for data/metadata_raw.tsv
  • Loading branch information
j23414 committed Oct 12, 2023
1 parent d053086 commit 4122deb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ingest/bin/ndjson-to-tsv-and-fasta
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ if __name__ == '__main__':
args.metadata_columns,
restval="",
extrasaction='ignore',
delimiter='\t'
delimiter='\t',
lineterminator='\n',
)
metadata_csv.writeheader()

Expand Down

0 comments on commit 4122deb

Please sign in to comment.