Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tosemml authored Sep 7, 2023
1 parent 5d760bd commit c0dd9ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GANDLF/utils/write_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def writeTrainingCSV(
channelsID_list = channelsID.split(",") # split into list

outputToWrite = "SubjectID,"
outputToWrite += ",".join(["Channel_" + str(i) for i, n in enumerate(channelsID_list)])
outputToWrite += ",".join(["Channel_" + str(i) for i, n in enumerate(channelsID_list)]) + ","
if labelID is not None:
outputToWrite += "Label"
outputToWrite += "\n"
Expand Down

0 comments on commit c0dd9ff

Please sign in to comment.