Update main.nf

This commit is contained in:
2026-09-01 00:24:15 +02:00
parent 4878251e94
commit 8a38513f6d

View File

@@ -35,12 +35,3 @@ workflow {
ch_chunks = split_text(ch_str) ch_chunks = split_text(ch_str)
ch_upper = convert_to_upper(ch_chunks.flatten()) ch_upper = convert_to_upper(ch_chunks.flatten())
} }
output {
lower {
path 'lower'
}
upper {
path 'upper'
}
}