-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add group directives to mrtpipelines.smk #12
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 |
---|---|---|
|
@@ -9,8 +9,9 @@ derivatives: False # Search in bids/derivatives if True; can also be path(s) to | |
|
||
# List of analysis levels in bids app | ||
analysis_levels: &analysis_levels | ||
- participant | ||
- participant1 | ||
- group | ||
- participant2 | ||
|
||
# Mapping from analysis_level to set of target rules or files | ||
targets_by_analysis_level: | ||
|
@@ -93,8 +94,8 @@ parse_args: | |
nargs: "+" | ||
|
||
--step: | ||
help: '(Mrtrix3) set the step size of the algorithm in mm | ||
(default: 0.35mm)' | ||
help: '(Mrtrix3) set the step size of the algorithm in mm. Should set to | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we're going to include this recommendation it would be good to briefly explain why or give a reference. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added reasoning in 36529fd |
||
4 steps per voxel (e.g. 1/4 * voxel size). (default: 0.35mm)' | ||
default: 0.35 | ||
|
||
--sl_count: | ||
|
@@ -114,17 +115,10 @@ parse_args: | |
node is found within this radius, the streamline endpoint is not | ||
assigned to any node. (default: 1.5mm)' | ||
default: 1.5 | ||
|
||
--exclude_gm: | ||
help: 'Exclude streamlines passing through other GM nodes along its | ||
trajectory (default: True)' | ||
default: True | ||
action: 'store_false' | ||
|
||
#-----------------------------------------------------# | ||
|
||
# Workflow specific config | ||
# Space (MNI152, MNINlin2009bAsym) | ||
# Spaces available (MNI152, MNINlin2009bAsym) | ||
space: MNI152 | ||
|
||
zona_bb_subcortex: | ||
|
@@ -137,11 +131,12 @@ zona_bb_subcortex: | |
seg: 'resources/MNI2009b/sub-SNSX32NLin2020Asym_space-MNINlin2009bAsym_ZonaBBSubCorSeg.nii.gz' | ||
exclude: 'resources/MNI152/sub-SNSX32NLin2020Asym_space-MNINlin2009bAsym_desc-exclude_ROI.nii.gz' | ||
|
||
# NOTE: This may not be needed with labelmerge | ||
freesurfer: | ||
labels: 'resources/freesurfer/fs_labels.csv' | ||
|
||
# Containers | ||
# Note: Update from latest to use specific tags | ||
# NOTE: Update from latest to use specific tags | ||
singularity: | ||
freesurfer: "docker://pwighton/freesurfer:7.2.0" | ||
neuroglia-core: "docker://khanlab/neuroglia-core:latest" | ||
|
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
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.
Need to update this to reflect
participant1
andparticipant2
analysis levels.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.
Fixed this in c258563 - this is actually still suppose to be
participant
andgroup
. Got this part mixed up with the group directive usage within the .smk file.