Skip to content

Commit

Permalink
Merge pull request #8 from ttngu207/main
Browse files Browse the repository at this point in the history
update: schema name changed to `nda`
  • Loading branch information
ttngu207 authored Dec 13, 2024
2 parents 67d9a08 + 62d804f commit 3b587f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion microns_phase3/nda.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# from pipeline import meso, experiment, stack
# m65p3 = dj.create_virtual_module('microns_minnie65_02','microns_minnie65_02')

schema = dj.schema(DB_PREFIX + 'phase3_nda', create_tables=True)
schema = dj.schema(DB_PREFIX + 'nda', create_tables=True)
# schema.spawn_missing_classes()

params = {'ignore_extra_fields':True,'skip_duplicates':True}
Expand Down
2 changes: 1 addition & 1 deletion microns_phase3/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import datajoint as dj
from microns_phase3 import DB_PREFIX
nda = dj.create_virtual_module('phase3_nda', DB_PREFIX + 'phase3_nda')
nda = dj.create_virtual_module('nda', DB_PREFIX + 'nda')

def get_grid(field_key, desired_res=1):
""" Get registered grid for this registration. """
Expand Down

0 comments on commit 3b587f5

Please sign in to comment.