|
| 1 | +from ._behavior import ( |
| 2 | + check_compass_direction_unit, |
| 3 | + check_spatial_series_degrees_magnitude, |
| 4 | + check_spatial_series_dims, |
| 5 | + check_spatial_series_radians_magnitude, |
| 6 | +) |
1 | 7 | from ._ecephys import ( |
2 | | - check_negative_spike_times, |
3 | 8 | check_electrical_series_dims, |
4 | 9 | check_electrical_series_reference_electrodes_table, |
| 10 | + check_negative_spike_times, |
5 | 11 | check_spike_times_not_in_unobserved_interval, |
6 | 12 | ) |
7 | 13 | from ._general import ( |
8 | 14 | check_description, |
9 | 15 | check_name_slashes, |
10 | 16 | ) |
| 17 | +from ._icephys import ( |
| 18 | + check_intracellular_electrode_cell_id_exists, |
| 19 | +) |
11 | 20 | from ._image_series import ( |
12 | 21 | check_image_series_data_size, |
13 | 22 | check_image_series_external_file_relative, |
14 | 23 | check_image_series_external_file_valid, |
15 | 24 | ) |
16 | 25 | from ._images import ( |
17 | | - check_order_of_images_unique, |
18 | | - check_order_of_images_len, |
19 | 26 | check_index_series_points_to_image, |
| 27 | + check_order_of_images_len, |
| 28 | + check_order_of_images_unique, |
20 | 29 | ) |
21 | 30 | from ._nwb_containers import ( |
22 | 31 | check_empty_string_for_optional_attribute, |
23 | | - check_small_dataset_compression, |
24 | 32 | check_large_dataset_compression, |
| 33 | + check_small_dataset_compression, |
25 | 34 | ) |
26 | 35 | from ._nwbfile_metadata import ( |
27 | | - check_keywords, |
| 36 | + check_doi_publications, |
| 37 | + check_experiment_description, |
| 38 | + check_experimenter_exists, |
| 39 | + check_experimenter_form, |
28 | 40 | check_institution, |
| 41 | + check_keywords, |
| 42 | + check_processing_module_name, |
| 43 | + check_session_start_time_future_date, |
| 44 | + check_session_start_time_old_date, |
29 | 45 | check_subject_age, |
30 | | - check_subject_sex, |
31 | 46 | check_subject_exists, |
32 | | - check_doi_publications, |
33 | | - check_experimenter_form, |
34 | | - check_experimenter_exists, |
35 | | - check_experiment_description, |
36 | 47 | check_subject_id_exists, |
| 48 | + check_subject_proper_age_range, |
| 49 | + check_subject_sex, |
37 | 50 | check_subject_species_exists, |
38 | 51 | check_subject_species_form, |
39 | | - check_subject_proper_age_range, |
40 | | - check_session_start_time_future_date, |
41 | | - check_processing_module_name, |
42 | | - check_session_start_time_old_date, |
43 | 52 | ) |
44 | 53 | from ._ogen import ( |
45 | 54 | check_optogenetic_stimulus_site_has_optogenetic_series, |
46 | 55 | ) |
47 | 56 | from ._ophys import ( |
| 57 | + check_emission_lambda_in_nm, |
48 | 58 | check_excitation_lambda_in_nm, |
49 | 59 | check_plane_segmentation_image_mask_shape_against_ref_images, |
50 | 60 | check_roi_response_series_dims, |
51 | | - check_emission_lambda_in_nm, |
52 | 61 | check_roi_response_series_link_to_plane_segmentation, |
53 | 62 | ) |
54 | 63 | from ._tables import ( |
55 | | - check_single_row, |
56 | | - check_ids_unique, |
57 | | - check_empty_table, |
58 | 64 | check_col_not_nan, |
59 | 65 | check_column_binary_capability, |
60 | 66 | check_dynamic_table_region_data_validity, |
| 67 | + check_empty_table, |
| 68 | + check_ids_unique, |
| 69 | + check_single_row, |
| 70 | + check_table_time_columns_are_not_negative, |
| 71 | + check_table_values_for_dict, |
61 | 72 | check_time_interval_time_columns, |
62 | 73 | check_time_intervals_stop_after_start, |
63 | | - check_table_values_for_dict, |
64 | | - check_table_time_columns_are_not_negative, |
65 | 74 | ) |
66 | 75 | from ._time_series import ( |
67 | | - check_resolution, |
| 76 | + check_data_orientation, |
68 | 77 | check_missing_unit, |
| 78 | + check_rate_is_not_zero, |
69 | 79 | check_regular_timestamps, |
| 80 | + check_resolution, |
| 81 | + check_timestamp_of_the_first_sample_is_not_negative, |
70 | 82 | check_timestamps_ascending, |
71 | | - check_data_orientation, |
72 | | - check_timestamps_without_nans, |
73 | 83 | check_timestamps_match_first_dimension, |
74 | | - check_timestamp_of_the_first_sample_is_not_negative, |
75 | | - check_rate_is_not_zero, |
76 | | -) |
77 | | -from ._icephys import ( |
78 | | - check_intracellular_electrode_cell_id_exists, |
79 | | -) |
80 | | -from ._behavior import ( |
81 | | - check_compass_direction_unit, |
82 | | - check_spatial_series_radians_magnitude, |
83 | | - check_spatial_series_dims, |
84 | | - check_spatial_series_degrees_magnitude, |
| 84 | + check_timestamps_without_nans, |
85 | 85 | ) |
86 | 86 |
|
87 | 87 | __all__ = [ |
|
0 commit comments