Skip to content

Commit

Permalink
10.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pkalita-lbl committed Jul 24, 2024
1 parent 2e5f5da commit ad14407
Show file tree
Hide file tree
Showing 6 changed files with 1,048 additions and 1,014 deletions.
17 changes: 17 additions & 0 deletions nmdc_schema/migrators/migrator_from_10_6_0_to_10_7_0.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from nmdc_schema.migrators.migrator_base import MigratorBase


class Migrator(MigratorBase):
r"""
Migrates a database between two schemas.
Note: This is a "no op" migrator. Its existence serves as documentation that no
database migration is necessary between the specified schema versions.
"""

_from_version = "10.6.0"
_to_version = "10.7.0"

def upgrade(self) -> None:
r"""Do nothing."""
pass
6 changes: 5 additions & 1 deletion nmdc_schema/nmdc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Auto generated from nmdc.yaml by pythongen.py version: 0.0.1
# Generation date: 2024-07-19T10:42:33
# Generation date: 2024-07-24T13:21:38
# Schema: NMDC
#
# id: https://w3id.org/nmdc/nmdc
Expand Down Expand Up @@ -6377,6 +6377,10 @@ def _addvals(cls):
PermissibleValue(
text="rRNA Filtered Sequencing Reads",
description="File containing ribosomal reads from the read qc filtering step."))
setattr(cls, "BAI File",
PermissibleValue(
text="BAI File",
description="""An index file found in the same directory as the binary alignment map (BAM) file, a compressed binary version of a sequence alignment/map (SAM) file."""))

class CreditEnum(EnumDefinitionImpl):

Expand Down
3 changes: 2 additions & 1 deletion nmdc_schema/nmdc.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4482,7 +4482,8 @@
"Metatranscriptome Expression",
"Metatranscriptome Expression Intergenic",
"Metatranscriptome Expression Info File",
"rRNA Filtered Sequencing Reads"
"rRNA Filtered Sequencing Reads",
"BAI File"
],
"title": "FileTypeEnum",
"type": "string"
Expand Down
3 changes: 2 additions & 1 deletion nmdc_schema/nmdc_materialized_patterns.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4494,7 +4494,8 @@
"Metatranscriptome Expression",
"Metatranscriptome Expression Intergenic",
"Metatranscriptome Expression Info File",
"rRNA Filtered Sequencing Reads"
"rRNA Filtered Sequencing Reads",
"BAI File"
],
"title": "FileTypeEnum",
"type": "string"
Expand Down
Loading

0 comments on commit ad14407

Please sign in to comment.