Skip to content

Commit 7bc93f4

Browse files
committed
Fix naming of monitors
1 parent 450ee6b commit 7bc93f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pysolo_slices.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ def __init__(self, mon, sch, ech, genotype, comment, smont, sd, emont, eday, yea
5050

5151
#Data coming from outside
5252
self.Header = [mon, sch, ech, genotype, comment, smont, sd, emont, eday, year, version]
53-
self.Mon = str(mon).split('/')
54-
self.StartChannel = str(sch).split('/')
55-
self.EndChannel = str(ech).split('/')
53+
self.Mon = [str(int(m)) for m in mon.split('/')]
54+
self.StartChannel = [str(int(sc)) for sc in sch.split('/')]
55+
self.EndChannel = [str(int(ec)) for ec in ech.split('/')]
5656
self.Genotype = str(genotype)
5757
self.Comment = str(comment)
5858
self.StartMonth = int(smont)

0 commit comments

Comments
 (0)