about summary refs log tree commit diff
path: root/wqflask/utility/genofile_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask/utility/genofile_parser.py')
-rw-r--r--wqflask/utility/genofile_parser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/utility/genofile_parser.py b/wqflask/utility/genofile_parser.py
index 94a08c17..09100bd9 100644
--- a/wqflask/utility/genofile_parser.py
+++ b/wqflask/utility/genofile_parser.py
@@ -92,7 +92,8 @@ class ConvertGenoFile:
         genotypes = row_items[2:]
       for item_count, genotype in enumerate(genotypes):
         if genotype.upper().strip() in self.configurations:
-          this_marker.genotypes.append(self.configurations[genotype.upper().strip()])
+          this_marker.genotypes.append(
+            self.configurations[genotype.upper().strip()])
         else:
           print("WARNING:", genotype.upper())
           this_marker.genotypes.append("NA")