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
I ran into this error in trying to create sample_sheets:
File "sample_sheets.py", line 198, in create_sample_sheet
raise ValueError(file_name_error_msg.format(idat))
ValueError: This .idat file does not have the right pattern to auto-generate a sample sheet:
To fix it for Windows users, one simply needs to change the "/" with "\\" like so:
filename = str(idat).split("\\")[-1]
The text was updated successfully, but these errors were encountered:
I ran into this error in trying to create sample_sheets:
To fix it for Windows users, one simply needs to change the "/" with "\\" like so:
filename = str(idat).split("\\")[-1]
The text was updated successfully, but these errors were encountered: