@@ -118,13 +118,13 @@ def getColumnsXls(fileIn):
118118 # print(indexName[c])
119119 while curr_row < num_rows :
120120 curr_row += 1
121- row = worksheet .row (curr_row )
121+ # row = worksheet.row(curr_row)
122122 # print('Row:', curr_row)
123123 curr_cell = - 1
124124 while curr_cell < num_cells :
125125 curr_cell += 1
126126 # Cell Types: 0=Empty, 1=Text, 2=Number, 3=Date, 4=Boolean, 5=Error, 6=Blank
127- cell_type = worksheet .cell_type (curr_row , curr_cell )
127+ # cell_type = worksheet.cell_type(curr_row, curr_cell)
128128 cell_value = str (worksheet .cell_value (curr_row , curr_cell ))
129129 # print(' ', cell_type, ':', cell_value)
130130 cols [indexName [curr_cell ]] += [cell_value ]
@@ -256,10 +256,11 @@ def matchLists(cols1, cols2, indexName1, indexName2):
256256# 'R', 'Rp', 'S', 'Sp' map to 'Send'.
257257# 'NMJ' does not map.
258258def typeMapping (cols1 , cols2 , indexName1 , indexName2 ):
259- list1 = ["GapJunction" , "Send" ]
260- list2 = ["EJ" , "NMJ" , "R" , "Rp" , "S" , "Sp" ]
261- type1 = cols1 [indexName1 [2 ]]
262- type2 = cols2 [indexName2 [2 ]]
259+ # list1 = ["GapJunction", "Send"]
260+ # list2 = ["EJ", "NMJ", "R", "Rp", "S", "Sp"]
261+ # type1 = cols1[indexName1[2]]
262+ # type2 = cols2[indexName2[2]]
263+ pass
263264
264265
265266if __name__ == "__main__" :
0 commit comments