-
Notifications
You must be signed in to change notification settings - Fork 708
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
Factor out preprocessing #1342
Factor out preprocessing #1342
Conversation
This PR is against the
|
|
ch_name_replacements = ch_fastq | ||
.filter{ meta, reads -> | ||
reads.size() == 1 | ||
} | ||
.map{ meta, reads -> | ||
def name1 = file(reads[0]).simpleName + "\t" + meta.id + '_1' | ||
def name1 = file(reads[0][0]).simpleName + "\t" + meta.id + '_1' | ||
if (reads[1] ){ | ||
def name2 = file(reads[1]).simpleName + "\t" + meta.id + '_2' | ||
def name2 = file(reads[0][1]).simpleName + "\t" + meta.id + '_2' | ||
return [ name1, name2 ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's this whole change about?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's because I'm using ch_fastq directly (since the one with single
and multiple
branches is moved to the subworkflow). So these are now tuples output by groupTuple requiring the double index:
[[foo.fastq.gz,bar.fastq.gz]]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love this <3
Glad to hear- especially since you were skeptical about the subworkflow! |
Finally move preprocessing logic to the subworkflow, which I factored out of RNAseq to use in Riboseq.
I've had to update the subworkflow itself to incorporate some improvements related to strandedness, which we'd made in the meantime nf-core/modules#5982, so that will need merging first.
Edit: also nf-core/modules#5988
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).