We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c6963d commit 26e0cf9Copy full SHA for 26e0cf9
lang/python/NEWS.rst
@@ -1,3 +1,9 @@
1
+Version 1.2.1: October 5, 2018
2
+--------------------------------------------------------------------------------
3
+
4
++ Fixed a bug in the python reference library causing start coordinate values
5
+ to be empty in some cases when writing data.
6
7
Version 1.2.0: August 17, 2018
8
--------------------------------------------------------------------------------
9
lang/python/airr/io.py
@@ -218,7 +218,7 @@ def write(self, row):
218
# Adjust coordinates
219
if f.endswith('_start') and self.base == 1:
220
try:
221
- row[f] = row[f] + 1
+ row[f] = self.schema.to_int(row[f]) + 1
222
except TypeError:
223
row[f] = None
224
0 commit comments