-
Notifications
You must be signed in to change notification settings - Fork 126
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
Short read variants and consensus depth #482
base: dev
Are you sure you want to change the base?
Conversation
Also I have a couple comments.
|
I think it is better to have different parameters for variant calling and consensus, because if it won’t be configurable in the config file anymore, it is better to give both options. Don't forget that viralrecon has two callers and two consensus softwates, those both params should be added to both of them. |
Also, if you update the conda-forge versions of the softwares, you need to create new mulled files. I think latest python is conda-forge::python=3.13.2, doesn't it work with that version? I was updating local modules version in this issue #467 , I can link the make bed mask version with this PR if you manage it |
|
Which column do you want to add to MQC? |
As I understood — column is a suggestion from the issue, I meant that. And I totally forgot to add mulled version, yes. But I created one for myself while testing via wave 😆 |
Ok, then I separate consensus depth for different callers too. But I didn't change frequency options — I should do it too? With that it seems like 4 new parameters. Is it ok? |
And should I add similar parameters to nanopore workflow? |
Oh true, I see they asked for the genome fraction of the sample at the min_depth param. I think it is hardcoded as 10X, so yes, if you want to add that to this PR you should change that too. Else we can keep the issue open and maybe someone else wants to add that to MQC. |
sorry, I was mixing with another PR, with min_depth, separated for variant_calling and consensus is enough, and adding them to both softwares (2 new params only). |
You can add it too. Just make sure which is the param that is used in artic minion, I don't know if it makes any difference between variant_calling and consensus depths.... |
❗ I forgot to say, add the new params info to viralrecon usage documentation and the CHANGELOG. |
So many buttons I need to push them all 🤦♂️ |
After staring at the code for a while I see this scheme for adding a new column: %%{init: {'theme':'sea'}}%%
flowchart LR
a[params.min_depth] --> b([Modify mqc yml template with new mosdepth_config]) --> c[Gather depth numbers from General Stats file after first MultiQC run] --> d[Add new column to multiqc_to_custom_csv.py] --> e([Add that column to mqc yml template for the second MultiQC run])
Where round charts involve modifying YML files and adding values from the provided The last chart is needed only for the column order in the MultiQC table (otherwise, the new column will be last). Does this logic seem correct? I want to confirm before proceeding with writing a Python script if necessary. |
Reference docks |
That approach makes sense for me! Make sure that all this makes sense with the cnages in this PR? #479 |
Description:
#447
This PR adds the
min_depth
parameter for Illumina variant/consensus calling. The Nanopore artic_make_depth_mask remains unchanged. MultiQC mosdepth coverage >min_depth
has not been added either.Key Changes:
min_depth
instead of args2PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.