forked from scilus/nf-scil
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request scilus#62 from ThoumyreStanislas/t1_betcrop
[WIP] add t1 option in fslbetcrop module
- Loading branch information
Showing
5 changed files
with
144 additions
and
40 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,24 @@ | ||
process { | ||
|
||
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" } | ||
|
||
withName: "BETCROP_FSLBETCROP" { | ||
ext.bet_dwi_f = 0.16 | ||
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" } | ||
ext.bet_f = 0.16 | ||
ext.b0_thr = 10 | ||
ext.crop = true | ||
ext.dilate = false | ||
} | ||
|
||
withName: "test_betcrop_fslbetcrop_t1:BETCROP_FSLBETCROP" { | ||
ext.bet_f = 0.5 | ||
ext.crop = true | ||
ext.dilate = false | ||
} | ||
|
||
withName: "test_betcrop_fslbetcrop_t1_dilate:BETCROP_FSLBETCROP" { | ||
ext.bet_f = 0.5 | ||
ext.size_dil = 5 | ||
ext.crop = true | ||
ext.dilate = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,45 @@ | ||
- name: betcrop fslbetcrop test_betcrop_fslbetcrop | ||
command: nextflow run ./tests/modules/nf-scil/betcrop/fslbetcrop -entry test_betcrop_fslbetcrop -c ./tests/config/nextflow.config | ||
- name: betcrop fslbetcrop test_betcrop_fslbetcrop_dwi | ||
command: nextflow run ./tests/modules/nf-scil/betcrop/fslbetcrop -entry test_betcrop_fslbetcrop_dwi -c ./tests/config/nextflow.config | ||
tags: | ||
- betcrop/fslbetcrop | ||
- betcrop | ||
files: | ||
- path: output/betcrop/test__b0_bet.nii.gz | ||
md5sum: 884a9b20cfae5f44ede3b3f57a087066 | ||
- path: output/betcrop/test__b0_bet_mask.nii.gz | ||
md5sum: 73a197481d8654357add819aac01ac4f | ||
- path: output/betcrop/test__image_bet.nii.gz | ||
md5sum: a7f148ee905b3e2c3d6b3a19a82ab646 | ||
- path: output/betcrop/test__image_bet_mask.nii.gz | ||
md5sum: f529265040a1564c9e6711238e3c8339 | ||
- path: output/betcrop/test__image_boundingBox.pkl | ||
md5sum: 9e5e03281a8bd90e1b4e4496e71c1b95 | ||
- path: output/betcrop/versions.yml | ||
|
||
- name: betcrop fslbetcrop test_betcrop_fslbetcrop_t1 | ||
command: nextflow run ./tests/modules/nf-scil/betcrop/fslbetcrop -entry test_betcrop_fslbetcrop_t1 -c ./tests/config/nextflow.config | ||
tags: | ||
- betcrop/fslbetcrop | ||
- betcrop | ||
files: | ||
- path: output/betcrop/test__image_bet.nii.gz | ||
md5sum: 9ceef378099fffe2fc1ff29a3d0105a9 | ||
- path: output/betcrop/test__image_bet_mask.nii.gz | ||
md5sum: 8744aa4315845bec621a0d2c5bcc2647 | ||
- path: output/betcrop/test__image_boundingBox.pkl | ||
md5sum: e863210ecc0902fa11548f3f896658a6 | ||
- path: output/betcrop/versions.yml | ||
|
||
- name: betcrop fslbetcrop test_betcrop_fslbetcrop_t1_dilate | ||
command: nextflow run ./tests/modules/nf-scil/betcrop/fslbetcrop -entry test_betcrop_fslbetcrop_t1_dilate -c ./tests/config/nextflow.config | ||
tags: | ||
- betcrop/fslbetcrop | ||
- betcrop | ||
files: | ||
- path: output/betcrop/test__dwi_bet_cropped.nii.gz | ||
md5sum: e597e3030800fbf9de681c1a5e539c9d | ||
- path: output/betcrop/test__dwi_bet_cropped_mask.nii.gz | ||
md5sum: d511acb62d15958b5a8f2116cdb3ce3a | ||
- path: output/betcrop/test__dwi_boundingBox.pkl | ||
md5sum: 89012d5b4f0f1bee03658b193911e0a1 | ||
- path: output/betcrop/test__image_bet.nii.gz | ||
md5sum: 9ceef378099fffe2fc1ff29a3d0105a9 | ||
- path: output/betcrop/test__image_bet_mask.nii.gz | ||
md5sum: c21d1270d4713e6fe7cf09bfdf97fe6a | ||
- path: output/betcrop/test__image_boundingBox.pkl | ||
md5sum: e863210ecc0902fa11548f3f896658a6 | ||
- path: output/betcrop/versions.yml |