Skip to content

Commit

Permalink
Add __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrnr committed Feb 25, 2025
1 parent d800621 commit ffad545
Showing 1 changed file with 203 additions and 0 deletions.
203 changes: 203 additions & 0 deletions mne/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,3 +257,206 @@
# initialize logging
set_log_level(None, False)
set_log_file()

__all__ = [
"__version__",
"set_log_level",
"set_log_file",
"verbose",
"set_config",
"get_config",
"get_config_path",
"set_cache_dir",
"set_memmap_min_size",
"grand_average",
"sys_info",
"open_docs",
"use_log_level",
"pick_types",
"pick_channels",
"pick_channels_regexp",
"pick_channels_forward",
"pick_types_forward",
"pick_channels_cov",
"pick_info",
"channel_type",
"channel_indices_by_type",
"concatenate_raws",
"match_channel_orders",
"create_info",
"Info",
"Projection",
"read_epochs_kit",
"read_epochs_eeglab",
"set_eeg_reference",
"set_bipolar_reference",
"add_reference_channels",
"what",
"make_sphere_model",
"make_bem_model",
"make_bem_solution",
"read_bem_surfaces",
"write_bem_surfaces",
"write_head_bem",
"read_bem_solution",
"write_bem_solution",
"read_cov",
"write_cov",
"Covariance",
"compute_raw_covariance",
"compute_covariance",
"whiten_evoked",
"make_ad_hoc_cov",
"read_events",
"write_events",
"find_events",
"merge_events",
"pick_events",
"make_fixed_length_events",
"concatenate_events",
"find_stim_steps",
"AcqParserFIF",
"count_events",
"head_to_mni",
"head_to_mri",
"read_talxfm",
"get_volume_labels_from_aseg",
"read_freesurfer_lut",
"vertex_to_mni",
"read_lta",
"read_forward_solution",
"apply_forward",
"apply_forward_raw",
"average_forward_solutions",
"Forward",
"write_forward_solution",
"make_forward_solution",
"convert_forward_solution",
"make_field_map",
"make_forward_dipole",
"use_coil_def",
"read_source_estimate",
"SourceEstimate",
"VectorSourceEstimate",
"VolSourceEstimate",
"VolVectorSourceEstimate",
"MixedSourceEstimate",
"MixedVectorSourceEstimate",
"grade_to_tris",
"spatial_src_adjacency",
"spatial_tris_adjacency",
"spatial_dist_adjacency",
"spatial_inter_hemi_adjacency",
"spatio_temporal_src_adjacency",
"spatio_temporal_tris_adjacency",
"spatio_temporal_dist_adjacency",
"extract_label_time_course",
"stc_near_sensors",
"read_surface",
"write_surface",
"decimate_surface",
"read_tri",
"get_head_surf",
"get_meg_helmet_surf",
"dig_mri_distances",
"get_montage_volume_labels",
"read_morph_map",
"SourceMorph",
"read_source_morph",
"grade_to_vertices",
"compute_source_morph",
"Annotations",
"read_annotations",
"annotations_from_events",
"events_from_annotations",
"count_annotations",
"BaseEpochs",
"Epochs",
"EpochsArray",
"read_epochs",
"concatenate_epochs",
"make_fixed_length_epochs",
"Evoked",
"EvokedArray",
"read_evokeds",
"write_evokeds",
"combine_evoked",
"read_label",
"label_sign_flip",
"write_label",
"stc_to_label",
"grow_labels",
"Label",
"split_label",
"BiHemiLabel",
"read_labels_from_annot",
"write_labels_to_annot",
"random_parcellation",
"morph_labels",
"labels_to_stc",
"parse_config",
"read_reject_parameters",
"create_default_subject",
"scale_bem",
"scale_mri",
"scale_labels",
"scale_source_space",
"read_trans",
"write_trans",
"transform_surface_to",
"Transform",
"read_proj",
"write_proj",
"compute_proj_epochs",
"compute_proj_evoked",
"compute_proj_raw",
"sensitivity_map",
"read_dipole",
"Dipole",
"DipoleFixed",
"fit_dipole",
"equalize_channels",
"rename_channels",
"find_layout",
"read_vectorview_selection",
"Report",
"open_report",
"read_epochs_fieldtrip",
"read_evoked_besa",
"read_evoked_fieldtrip",
"read_evokeds_mff",
"compute_rank",
"SourceSpaces",
"add_source_space_distances",
"compute_distance_to_sensors",
"get_decimated_surfaces",
"get_volume_labels_from_src",
"morph_source_spaces",
"read_source_spaces",
"setup_source_space",
"setup_volume_source_space",
"write_source_spaces",
"beamformer",
"channels",
"chpi",
"commands",
"coreg",
"cuda",
"datasets",
"dipole",
"epochs",
"event",
"io",
"filter",
"gui",
"inverse_sparse",
"minimum_norm",
"preprocessing",
"simulation",
"source_space",
"stats",
"surface",
"time_frequency",
"viz",
"export",
]

0 comments on commit ffad545

Please sign in to comment.