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
Hello! This is a minor edge case but I'm posting in case anyone else runs into the issue. In cases where the given sample name consists of digits, it appears that pandas is coercing the column to integers, which breaks the logic here with an error:
out = sample_file.split('/')[-1]
^^^^^^^^^^^^^^^^^
AttributeError: 'int' object has no attribute 'split'
I think adding something like the following should sort it out.
Hello! This is a minor edge case but I'm posting in case anyone else runs into the issue. In cases where the given sample name consists of digits, it appears that pandas is coercing the column to integers, which breaks the logic here with an error:
I think adding something like the following should sort it out.
Thanks for all your efforts!
Nick
The text was updated successfully, but these errors were encountered: