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
pip3 version of preprocess_interface.py returns list, not string:
reads_base_name = args.vg_json_reads_file_name.split(".")[0:-1]
Resulting mismatched types in string concatenation at line 102 cause program to crash.
This appears to be fixed in the main repository:
reads_base_name = '.'.join(args.vg_json_reads_file_name.split(".")[0:-1])
Please release a patch to pip!
The text was updated successfully, but these errors were encountered:
pip3 version of preprocess_interface.py returns list, not string:
reads_base_name = args.vg_json_reads_file_name.split(".")[0:-1]
Resulting mismatched types in string concatenation at line 102 cause program to crash.
This appears to be fixed in the main repository:
reads_base_name = '.'.join(args.vg_json_reads_file_name.split(".")[0:-1])
Please release a patch to pip!
The text was updated successfully, but these errors were encountered: