You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When users provide multiple BAM files from the same library as BAM input for nf-core/eager, the only attribute that can be different between rows (other than the BAM path) is the Lane number. Therefore, the lane should be propagated into the meta map of the BAM input subchannel.
Adding this is easy enough, but the following will need to be ensured:
Adding this attribute does not break any downstream channel manipulations like .join, .combine etc.
BAMs across lanes are merged before Deduplication (as should be the case with FastQs), at which point the lane attribute will be dropped from the channel.
Lane info should also be in the output name for BAM filtering output (or BAM filtering occurs after merging at library level).
The text was updated successfully, but these errors were encountered:
When users provide multiple BAM files from the same library as BAM input for nf-core/eager, the only attribute that can be different between rows (other than the BAM path) is the Lane number. Therefore, the
lane
should be propagated into themeta
map of the BAM input subchannel.Adding this is easy enough, but the following will need to be ensured:
.join
,.combine
etc.The text was updated successfully, but these errors were encountered: