Skip to content
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

Change channel order #20

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Changes from all commits
Commits
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
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; bundles_for_fixel_afd}
.into{bundles_for_rm_invalid; in_bundles_check}

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
set sid, "${sid}__*_ic.trk" into bundles_for_label_and_distance_map, bundles_for_centroids, bundles_for_fixel_afd

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