From 0fb50162b247699bcf696c744a1daa8024761311 Mon Sep 17 00:00:00 2001
From: Martijn Vermaat <martijn@vermaat.name>
Date: Mon, 21 Jul 2014 19:47:15 +0200
Subject: [PATCH] Fix typo in models (orentation->orientation)

---
 mutalyzer/db/models.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mutalyzer/db/models.py b/mutalyzer/db/models.py
index 920ce36c..a60048e0 100644
--- a/mutalyzer/db/models.py
+++ b/mutalyzer/db/models.py
@@ -180,7 +180,7 @@ class Reference(db.Base):
     #: The orientation on the accession number from which we took a slice, if
     #: available.
     slice_orientation = Column(Enum('forward', 'reverse',
-                                    name='slice_orentation'))
+                                    name='slice_orientation'))
 
     #: The URL from which the reference file was downloaded, if available.
     download_url = Column(String(255), index=True, unique=True)
@@ -373,7 +373,7 @@ class TranscriptMapping(db.Base):
 
     # Todo: Use constants and some utilities for conversion.
     #: The orientation of the transcript on the chromosome.
-    orientation = Column(Enum('forward', 'reverse', name='orentation'),
+    orientation = Column(Enum('forward', 'reverse', name='orientation'),
                          nullable=False)
 
     #: The start position of the transcript on the chromosome.
-- 
GitLab