msisensor-rna icon indicating copy to clipboard operation
msisensor-rna copied to clipboard

1st sample on the same line as the column header in output

Open Benoitdw opened this issue 2 years ago • 1 comments

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

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 !

Benoitdw avatar Sep 09 '21 08:09 Benoitdw