Skip to content

Commit

Permalink
Merge pull request #23 from arnaudbore/fix_sarra
Browse files Browse the repository at this point in the history
fix afd + optional trk
  • Loading branch information
arnaudbore authored Oct 24, 2023
2 parents 99150d8 + a5a0e0e commit 7f84425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ workflow.onComplete {
Channel
.fromFilePairs("$params.input/**/bundles/*.trk",
size: -1) { it.parent.parent.name }
.into{bundles_for_rm_invalid; in_bundles_check}
.into{bundles_for_rm_invalid; in_bundles_check; bundles_for_fixel_afd}

Channel
.fromFilePairs("$params.input/**/metrics/*.nii.gz",
Expand Down Expand Up @@ -137,7 +137,7 @@ process Remove_Invalid_Streamlines {
set sid, file(bundles) from bundles_for_rm_invalid

output:
set sid, "${sid}__*_ic.trk" into bundles_for_label_and_distance_map, bundles_for_centroids, bundles_for_fixel_afd
set sid, "${sid}__*_ic.trk" into bundles_for_label_and_distance_map, bundles_for_centroids optional true

script:
String bundles_list = bundles.join(", ").replace(',', '')
Expand Down

0 comments on commit 7f84425

Please sign in to comment.