Skip to content

Commit

Permalink
UpdatedSpreadsheetDataReader
Browse files Browse the repository at this point in the history
  • Loading branch information
yasinthanvickneswaran committed Feb 15, 2024
1 parent 3fed37e commit c459623
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions c302/UpdatedSpreadsheetDataReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ def get_old_muscle_name(muscle):
index = int(muscle[5:])
if index < 10:
index = "0%s" % index
if muscle.startswith("BWM-VL"):
if muscle.startswith("vBWML"):
return "MVL%s" % index
elif muscle.startswith("BWM-VR"):
elif muscle.startswith("vBWMR"):
return "MVR%s" % index
elif muscle.startswith("BWM-DL"):
elif muscle.startswith("dBWML"):
return "MDL%s" % index
elif muscle.startswith("BWM-DR"):
elif muscle.startswith("dBWMR"):
return "MDR%s" % index

def get_syntype(syntype):
Expand Down

0 comments on commit c459623

Please sign in to comment.