Skip to content
Snippets Groups Projects
Commit 0fb50162 authored by Vermaat's avatar Vermaat
Browse files

Fix typo in models (orentation->orientation)

parent 907af709
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment