-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating the default config to be compatible with adult recordings. #173
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
966679f
Updating the default config to be compatible with adult recordings.
christian-oreilly 5ea11ce
Code linting.
christian-oreilly 8172b0a
Fixing tests.
christian-oreilly 91cfc8f
Fixing spelling.
christian-oreilly cf926a9
Fixing simulation test.
christian-oreilly File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
######################### General properties ######################### | ||
#ref_loc_file: derivatives/pylossless/code/misc/standard_1020_ll_ref19.elc | ||
#montage_info: [0.0, -16.0, 0.0, -0.02, 0.0, -1.58, 10.7, 11.5, 11.5] | ||
|
||
################## General info about the project #################### | ||
project: | ||
readme: "# Description of the dataset" | ||
|
||
# Montage use to make file BIDS compliant. | ||
# Can be path to digitized montage OR a string of one of mne's built in | ||
# standard montages as specified by mne.channels.get_builtin_montages(). | ||
# Can be left empty if the input dataset is already in BIDS format. | ||
bids_montage: GSN-HydroCel-129 | ||
|
||
# montage used while running the lossless pipeline. | ||
# if empty, the pipeline will use the electrodes.tsv sidecar file, if created | ||
# during the BIDS conversion. | ||
# If specified, needs to be a string of one of mne's built in standard montages. | ||
analysis_montage: "" | ||
|
||
set_montage_kwargs: {} | ||
|
||
coordsys: | ||
EEGCoordinateSystem: Other | ||
EEGCoordinateUnits: metres | ||
|
||
general_info: | ||
authors: [Unspecified] | ||
institution_Name: Unspecified | ||
institution_address: Unspecified | ||
dataset_doi: [] | ||
funding: Unspecified | ||
how_to_acknowledge: tba | ||
license: "" | ||
name: Unspecified | ||
references_and_links: [] | ||
|
||
t_info: | ||
EEG_placement_scheme: EGI 129 | ||
cap_manufacturer: EGI | ||
cap_manufacturers_model_name: Hydrocel 129 Channel | ||
hardware_filters: n/a | ||
manufacturer: Electrical Geodesics | ||
manufacturers_model_name: NetAmps300 | ||
power_line_frequency: 60 | ||
software_filters: n/a | ||
software_versions: NetStation V4.5 | ||
|
||
######################## Task break detection ######################## | ||
# See arguments definition from mne.preprocessing.annotate_breaks | ||
find_breaks: | ||
|
||
############################## epoching ############################## | ||
epoching: | ||
overlap: 0 | ||
|
||
# See arguments definition from mne.Epochs | ||
epochs_args: | ||
baseline: null | ||
tmax: 1 | ||
tmin: 0 | ||
|
||
########################### EEG filtering ############################ | ||
# See arguments definition from mne.io.Raw.filter & mne.io.Raw.notch_filter | ||
filtering: | ||
filter_args: | ||
h_freq: 100 | ||
l_freq: 1 | ||
notch_filter_args: | ||
freqs: [60] | ||
|
||
############################## SLURM ################################# | ||
# Options for running the pipeline on a cluster | ||
# through SLURM | ||
slurm_options: | ||
account: def-emayada | ||
job_name: pylossless | ||
memory: 16g | ||
mpi: false | ||
num_tasks: 1 | ||
program_options: [] | ||
threads_per_task: [] | ||
time_limit: 2h | ||
|
||
########################## Nearest neighbor ########################## | ||
nearest_neighbors: | ||
n_nbr_ch: 3 | ||
n_nbr_epoch: 3 | ||
|
||
####################### Pipeline steps config ######################## | ||
bridged_channels: | ||
bridge_trim: 40 | ||
bridge_z: 6 | ||
|
||
noisy_channels: | ||
flag_crit: 0.2 | ||
outlier_method: quantile | ||
outliers_kwargs: | ||
k: 6 | ||
lower: 0.25 | ||
upper: 0.75 | ||
|
||
uncorrelated_channels: | ||
flag_crit: 0.2 | ||
outlier_method: quantile | ||
outliers_kwargs: | ||
k: 6 | ||
lower: 0.25 | ||
upper: 0.75 | ||
|
||
noisy_epochs: | ||
flag_crit: 0.2 | ||
outlier_method: quantile | ||
outliers_kwargs: | ||
k: 6 | ||
lower: 0.25 | ||
upper: 0.75 | ||
|
||
uncorrelated_epochs: | ||
flag_crit: 0.2 | ||
outlier_method: quantile | ||
outliers_kwargs: | ||
k: 6 | ||
lower: 0.25 | ||
upper: 0.75 | ||
|
||
################################ ICA ################################# | ||
ica: | ||
noisy_ic_epochs: | ||
flag_crit: 0.2 | ||
outlier_method: quantile | ||
outliers_kwargs: | ||
k: 6 | ||
lower: 0.25 | ||
upper: 0.75 | ||
|
||
# See arguments definition from mne.preprocessing.ICA | ||
ica_args: | ||
run1: | ||
method: fastica | ||
run2: | ||
method: infomax | ||
fit_params: | ||
extended: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aha nice ; )