-
Notifications
You must be signed in to change notification settings - Fork 1
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
Filter recruited fix #29
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ template: | |
skip_features: | ||
- igenomes | ||
- fastqc | ||
version: 1.0.0 | ||
version: 1.1.0dev |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ process FILTER_RECRUITED { | |
val(length_threshold) | ||
|
||
output: | ||
tuple val(meta), path("*.fasta.gz"), emit: fasta | ||
tuple val(meta), path("*.fasta.gz"), emit: fasta, optional: true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know the inner workings of this pipeline but this can cause some samples to be taken out of the flow, which can cause some join issues later on. Have you checked that this doesn't break anything? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, tested until the end of the pipeline and nothing breaks. That's what we would like to do with such edge cases, discard them. In a future update, we will also report them. This could go hand to hand with a general quality_check subworkflow that we are aiming to create and append to the pipeline. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Allright sounds good :) |
||
path "versions.yml" , emit: versions | ||
|
||
when: | ||
|
Large diffs are not rendered by default.
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.
Consider pyfastx at some point... it's pretty fast.
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.
Already in the TODOs ;)