The detection mode generates a file where the first sample is on the same line as the column header :

This can be easily fix by adding a "\n" to the 47th line in detection.py :
such as :
output_file.write("sample_id,msi_status,probability_of_MSI-H")
is now :
output_file.write("sample_id,msi_status,probability_of_MSI-H\n")
Ty for your job !
The detection mode generates a file where the first sample is on the same line as the column header :

This can be easily fix by adding a "\n" to the 47th line in
detection.py:such as :
output_file.write("sample_id,msi_status,probability_of_MSI-H")is now :
output_file.write("sample_id,msi_status,probability_of_MSI-H\n")Ty for your job !