You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the csv reader is actually assuming it's tab delimited (see here), but this is WRONG. Update the logic to test the header row and see if there is a tab in it. If it does, use '\t' as the delimiter, otherwise use ','.
You will have to read the file once to grab the lines in process_arguments around here.
The text was updated successfully, but these errors were encountered:
Currently, the csv reader is actually assuming it's tab delimited (see here), but this is WRONG. Update the logic to test the header row and see if there is a tab in it. If it does, use '\t' as the delimiter, otherwise use ','.
You will have to read the file once to grab the lines in process_arguments around here.
The text was updated successfully, but these errors were encountered: