Skip to content

Commit

Permalink
Incorrect type for hifi_read_length_mean
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdstrike authored Feb 28, 2024
1 parent 23ef830 commit 08cf2ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lang_qc/db/mlwh_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,15 +586,15 @@ class PacBioProductMetrics(Base):
mysqlINTEGER(unsigned=True), nullable=True, comment="The number of HiFi reads"
)
hifi_read_length_mean = Column(
mysqlSMALLINT(unsigned=True), nullable=True, comment="The mean HiFi read length"
mysqlINTEGER(unsigned=True), nullable=True, comment="The mean HiFi read length"
)
barcode_quality_score = Column(
mysqlSMALLINT(unsigned=True),
nullable=True,
comment="The mean barcode HiFi quality score",
)
hifi_read_quality_mean = Column(
mysqlSMALLINT(unsigned=True),
mysqlINTEGER(unsigned=True),
nullable=True,
comment="The mean HiFi base quality",
)
Expand Down

0 comments on commit 08cf2ee

Please sign in to comment.