-
Notifications
You must be signed in to change notification settings - Fork 17
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
skip removing small fastq.gz files after the length filter with --list or --sample #279
base: master
Are you sure you want to change the base?
Conversation
When using the e.g. 96 barcode kit you get tons of "false" barcodes. thats why we remove the small ones. |
True, but I see that this is a problem when a negative control is included (which should have few reads, but people want to see it in the report) |
I see! Do you start poreCov without Because when the user specifies |
(CI fail could be related to nextflow-io/nextflow#5456, which should be fixed in nextflow version 24.11.0-edge; CI uses version 24.10.3) |
We use But I also agree with you that it then should omit the filtering step, if you feed specific files to the workflow.
Yet we should add how |
Please correct me if I'm wrong here, but to my knowledge, |
|
Ah, I haven't checked out fasts input yet! Can you try maybe it with the latest change? I think the file size filter was not documented anywhere; please feel free to add/edit |
I tested your changes with fastas now. The basic function is fine, but there are two issues I ran into:
|
uff, the multifastas add another dimension here 😅 Should we disable the combination of |
Alrighty, I disabled
I run the test profiles ( |
Hi folks,
We have been using
--fastq_pass --samples
as input configuration, but we will switch to--fastq --list
at some point. While testing, I noticed that the negative control didn't appear in the reports.Now, I'm not sure if I understand the reasoning behind these lines completely: https://github.com/replikation/poreCov/blob/master/modules/filter_fastq_by_length.nf#L34-L36
However, we'd still like to have the negative control in the report, so with this PR, the removal of small fastq.gz files after the length filter is skipped with
--list
or--sample
.