-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix for nocontrol #44
Conversation
kubranarci
commented
Nov 12, 2024
- add cram/crai files to input list (assets/schema_input.json)
- add only a warn about the indices does not exists in converttovcf.json (bin/convertToStdVCF.py)
- change default arg for ENSEMBL VEP (conf/modules.config)
- upgrade samtools version for cram handling (modules/local/grep_samplename.nf)
- edit nextflow version to latest (nextflow.config)
@kubranarci, Could you also add an update to the changelog? |
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.
Looks good. Just need an update regarding the VEP options and the changelog.
conf/modules.config
Outdated
@@ -166,7 +166,7 @@ process { | |||
] | |||
} | |||
withName: 'ENSEMBLVEP_VEP' { | |||
//ext.args ='--everything --filter_common --per_gene --total_length --offline' | |||
ext.args ='--everything --filter_common --per_gene --total_length --offline' |
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.
Please exclude --filter_common
and --per_gene
, as we need all annotations for all variants, regardless of MAF. We also require all consensus data, not just the 'most severe' consensus for each variant.
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.
these parameters are mainly default settings, update on those parameters has to be given by local config. But I will this as well for now.