Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f2b847d
-skull option
davidmeunier79 May 28, 2025
555cbe2
NB
davidmeunier79 May 28, 2025
cf0f16e
``
davidmeunier79 May 28, 2025
e5f807c
|
davidmeunier79 May 28, 2025
8011cc0
Merge branch 'main' of github.com:davidmeunier79/skullTo3d
davidmeunier79 Jun 11, 2025
2b01a25
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Jul 16, 2025
6608428
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Aug 4, 2025
41435d7
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Aug 6, 2025
257f376
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Aug 26, 2025
c9e9d89
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Aug 29, 2025
4dee626
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Aug 29, 2025
ba1adb1
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Dec 10, 2025
9524aa7
Tips and tricks
davidmeunier79 Dec 10, 2025
4ffd17a
Merge branch 'add_doc'
davidmeunier79 Dec 10, 2025
79b1a60
ref
davidmeunier79 Dec 10, 2025
83889f0
___
davidmeunier79 Dec 10, 2025
9823a9a
-skull option
davidmeunier79 Dec 10, 2025
9b9f1e1
Merge branch 'correct_rebase'
davidmeunier79 Dec 10, 2025
afa4597
Merge branch 'main' of github.com:davidmeunier79/skullTo3d
davidmeunier79 Dec 10, 2025
4856a05
indent NB
davidmeunier79 Dec 10, 2025
1fa041c
no indent
davidmeunier79 Dec 10, 2025
cb21cc0
indent
davidmeunier79 Dec 10, 2025
737998a
simplified indent
davidmeunier79 Dec 10, 2025
b86332c
all bold
davidmeunier79 Dec 10, 2025
0f56ac5
NB
davidmeunier79 Dec 10, 2025
59cb168
spaces
davidmeunier79 Dec 10, 2025
0674174
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Dec 10, 2025
94f8bac
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Dec 10, 2025
943ad18
Merge branch 'main' of github.com:Macatools/skullTo3d
davidmeunier79 Dec 16, 2025
d57dcba
template_parcel
davidmeunier79 Dec 18, 2025
f34865c
added template stereoINTv2 + petra_head_auto_mask
davidmeunier79 Jan 6, 2026
250fa32
"petra_head_auto_mask":
davidmeunier79 Jan 6, 2026
5c95fc0
modif automask lithresh
davidmeunier79 Jan 6, 2026
279f197
forgot to add parcelgm
davidmeunier79 Jan 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions workflows/params_segment_marmo_ants_4animal_skull.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"general":
{
"template_name": "MBM_v3.0.1_6seg_stereoINT"
"template_name": "template_MBM_space-stereoINTv2"
},
"short_preparation_pipe":
{
Expand All @@ -17,14 +17,6 @@
"rig_only_flag":true
}
},
"pad_template":
{
"operation" : "PadImage",
"op2" : "90"
},
"denoise":
{
},
"fast":
{
"args": "-l 3"
Expand All @@ -45,16 +37,12 @@
},
"brain_segment_pipe":
{
"reg":
"reg_f3d":
{
"n": 2,
"m": "ref",
"dof": 12
},
"segment_atropos_pipe":
{
"use_priors":0.0,

"Atropos":
{
"dimension": 3
Expand All @@ -66,7 +54,9 @@
"wm": 3,
"csf": 4
}
}
},
"parcel_gm":
{}
},
"export_5tt_pipe":
{
Expand Down
12 changes: 12 additions & 0 deletions workflows/segment_skull.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,18 @@ def create_main_workflow(cmd, data_dir, process_dir, soft, species, subjects,
"Could not find template_seg {}".format(template_seg)
params_template["template_seg"] = template_seg

elif len(template_files) == 4:

template_seg = os.path.join(template_path, template_files[2])
assert os.path.exists(template_seg), \
"Could not find template_seg {}".format(template_seg)
params_template["template_seg"] = template_seg

template_parcel = os.path.join(template_path, template_files[3])
assert os.path.exists(template_parcel), \
"Could not find template_parcel {}".format(template_parcel)
params_template["template_parcel"] = template_parcel

elif len(template_files) == 5:

template_gm = os.path.join(template_path, template_files[2])
Expand Down