@@ -196,7 +196,7 @@ Other optical components (filters, sources, detectors) are provided by the ndx-o
196196 indicator = Indicator(
197197 name = " indicator" ,
198198 description = " Green indicator" ,
199- label = " GCamp6f " ,
199+ label = " GCaMP6f " ,
200200 viral_vector_injection = viral_vector_injection,
201201 )
202202
@@ -218,8 +218,8 @@ Other optical components (filters, sources, detectors) are provided by the ndx-o
218218 microscopy_channel = MicroscopyChannel(
219219 name = ' gcamp_channel' ,
220220 description = ' GCaMP6f channel' ,
221- excitation_wavelength_in_nm = 488 .0 ,
222- emission_wavelength_in_nm = 520 .0 ,
221+ excitation_wavelength_in_nm = 920 .0 ,
222+ emission_wavelength_in_nm = 510 .0 ,
223223 indicator = indicator # Link to indicator from MicroscopyExperimentMetadata
224224 )
225225
@@ -334,6 +334,8 @@ Basic workflow for 2D imaging:
334334
335335.. code-block :: python
336336
337+ from ndx_ophys_devices import Indicator, ViralVector, ViralVectorInjection
338+
337339 # 1. Set up microscope model and instance
338340 microscope_model = MicroscopeModel(
339341 name = ' 2p-model' ,
@@ -388,8 +390,6 @@ Basic workflow for 2D imaging:
388390 )
389391
390392 # 4. Create experiment metadata with indicators and rig
391- from ndx_ophys_devices import Indicator, ViralVector, ViralVectorInjection
392-
393393 viral_vector = ViralVector(
394394 name = " viral_vector" ,
395395 description = " AAV viral vector for optogenetic stimulation" ,
@@ -420,7 +420,7 @@ Basic workflow for 2D imaging:
420420 indicator = Indicator(
421421 name = " indicator" ,
422422 description = " Green indicator" ,
423- label = " GCamp6f " ,
423+ label = " GCaMP6f " ,
424424 viral_vector_injection = viral_vector_injection,
425425 )
426426
@@ -455,8 +455,8 @@ Basic workflow for 2D imaging:
455455 microscopy_channel = MicroscopyChannel(
456456 name = ' gcamp_channel' ,
457457 description = ' GCaMP6f channel' ,
458- excitation_wavelength_in_nm = 488 .0 ,
459- emission_wavelength_in_nm = 520 .0 ,
458+ excitation_wavelength_in_nm = 920 .0 ,
459+ emission_wavelength_in_nm = 510 .0 ,
460460 indicator = indicator # Link to indicator from MicroscopyExperimentMetadata
461461 )
462462
@@ -481,6 +481,8 @@ Workflow for one-photon widefield imaging:
481481
482482.. code-block :: python
483483
484+ from ndx_ophys_devices import Indicator, ViralVector, ViralVectorInjection
485+
484486 # 1. Set up microscope model and instance
485487 microscope_model = MicroscopeModel(
486488 name = ' 1p-model' ,
@@ -512,8 +514,6 @@ Workflow for one-photon widefield imaging:
512514 )
513515
514516 # 4. Create experiment metadata with indicators and rig
515- from ndx_ophys_devices import Indicator, ViralVector, ViralVectorInjection
516-
517517 viral_vector = ViralVector(
518518 name = " viral_vector" ,
519519 description = " AAV viral vector for optogenetic stimulation" ,
@@ -544,7 +544,7 @@ Workflow for one-photon widefield imaging:
544544 indicator = Indicator(
545545 name = " indicator" ,
546546 description = " Green indicator" ,
547- label = " GCamp6f " ,
547+ label = " GCaMP6f " ,
548548 viral_vector_injection = viral_vector_injection,
549549 )
550550
@@ -604,6 +604,8 @@ Workflow for volumetric imaging with targeted scanning:
604604
605605.. code-block :: python
606606
607+ from ndx_ophys_devices import Indicator, ViralVector, ViralVectorInjection
608+
607609 # 1. Set up microscope model and instance
608610 microscope_model = MicroscopeModel(
609611 name = ' volume-model' ,
@@ -635,8 +637,6 @@ Workflow for volumetric imaging with targeted scanning:
635637 )
636638
637639 # 4. Create experiment metadata with indicators and rig
638- from ndx_ophys_devices import Indicator, ViralVector, ViralVectorInjection
639-
640640 viral_vector = ViralVector(
641641 name = " viral_vector" ,
642642 description = " AAV viral vector for optogenetic stimulation" ,
@@ -667,7 +667,7 @@ Workflow for volumetric imaging with targeted scanning:
667667 indicator = Indicator(
668668 name = " indicator" ,
669669 description = " Green indicator" ,
670- label = " GCamp6f " ,
670+ label = " GCaMP6f " ,
671671 viral_vector_injection = viral_vector_injection,
672672 )
673673
@@ -944,7 +944,7 @@ Data Organization
9449441. **Naming Conventions **
945945 - Use descriptive, consistent names
946946 - Include relevant metadata in descriptions
947- - Document coordinate systems and reference frames
947+ - Use `` anatomical_target `` to document the brain region being imaged
948948
9499492. **Data Structure **
950950 - Group related data appropriately
0 commit comments