From 5681ed203fc4356dff4d8da4ab263f1f79da557d Mon Sep 17 00:00:00 2001 From: slsevilla Date: Mon, 27 Feb 2023 10:32:34 -0500 Subject: [PATCH] convert tab to comma --- workflow/scripts/sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/scripts/sort.py b/workflow/scripts/sort.py index cd5d067..c190ddc 100644 --- a/workflow/scripts/sort.py +++ b/workflow/scripts/sort.py @@ -8,4 +8,4 @@ MasterTable = MasterTable.sort_values(by=['Dist']) # output the final table -MasterTable.to_csv(sys.argv[2], index=False, sep = '\t') \ No newline at end of file +MasterTable.to_csv(sys.argv[2], index=False, sep = ',') \ No newline at end of file