1.1 --- a/scripts/last-dotplot Mon Mar 05 17:43:20 2018 +0900
1.2 +++ b/scripts/last-dotplot Mon May 14 11:42:55 2018 +0900
1.3 @@ -149,8 +149,8 @@
1.4
1.5 def readAlignments(fileName, opts):
1.6 '''Get alignments and sequence limits, from MAF or tabular format.'''
1.7 - seqRequests1 = map(seqRequestFromText, opts.seq1)
1.8 - seqRequests2 = map(seqRequestFromText, opts.seq2)
1.9 + seqRequests1 = [seqRequestFromText(i) for i in opts.seq1]
1.10 + seqRequests2 = [seqRequestFromText(i) for i in opts.seq2]
1.11
1.12 alignments = []
1.13 seqRanges1 = []