Remove duplicate rows from a CSV file. Creates a new tab delmited CSV.
- Python 3
- CSV file
- Differential Coordinates columns, including single quotes:
- 'ID'
- 'chromosome_name'
- 'start_position'
- 'end_position'
- 'strand'
- 'padj'
- 'log2FoldChange'
- Coordinates, no header, single column, tab delmited string
- "some\tfancy\tdata"
python3 remove_duplicates.py input.csv output.csv
python3 remove_duplicates.py -h
usage: remove_duplicates.py [-h] input_csv_path output_csv_path
Remove duplicate rows from CSV file
positional arguments:
input_csv_path Path to source CSV
output_csv_path Path to output CSV
optional arguments:
-h, --help show this help message and exit