-
Notifications
You must be signed in to change notification settings - Fork 55
Address language server issues #688
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
Conversation
|
fellen31
left a comment
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.
Very nice, missing a changelog though!
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.
Nice!
| ch_versions = Channel.empty() | ||
| ch_haplog = Channel.empty() | ||
| ch_haplogrep_in = Channel.empty() |
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.
Could be aligned
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.
Should this be a "Fixed" in the changelog?
| .map { item -> | ||
| def meta = item[0] | ||
| def model_calls = item[1] | ||
| return [meta.sample, meta, model_calls] | ||
| } |
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'm not sure I understand why this can't be:
| .map { item -> | |
| def meta = item[0] | |
| def model_calls = item[1] | |
| return [meta.sample, meta, model_calls] | |
| } | |
| .map { meta, model_calls -> | |
| return [meta.sample, meta, model_calls] | |
| } |
| run_rtgvcfeval: ["rtg_truthvcfs"], | ||
| skip_repeat_calling: ["variant_catalog"], | ||
| skip_repeat_annotation: ["variant_catalog"], | ||
| skip_snv_calling: ["genome"], | ||
| skip_snv_annotation: ["genome", "vcfanno_resources", "vcfanno_toml", "vep_cache", "vep_cache_version", | ||
| "gnomad_af", "score_config_snv", "variant_consequences_snv"], | ||
| skip_sv_annotation: ["genome", "vep_cache", "vep_cache_version", "score_config_sv", "variant_consequences_sv"], | ||
| skip_mt_annotation: ["genome", "mito_name", "vcfanno_resources", "vcfanno_toml", "score_config_mt", | ||
| "vep_cache_version", "vep_cache", "variant_consequences_snv"], | ||
| analysis_type_wes: ["target_bed"], | ||
| variant_caller_sentieon: ["ml_model"], | ||
| skip_germlinecnvcaller: ["ploidy_model", "gcnvcaller_model", "readcount_intervals"], | ||
| skip_me_calling: ["mobile_element_references"], | ||
| skip_me_annotation: ["mobile_element_svdb_annotations", "variant_consequences_snv"], | ||
| skip_gens: ["gens_gnomad_pos", "gens_interval_list", "gens_pon_female", "gens_pon_male"], | ||
| skip_smncopynumbercaller: ["genome"] |
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.
Could perhaps be aligned.
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.
Nice! Will have a look to simplify Nallo based on this.
PR checklist
nf-core pipelines lint).nextflow run . -profile test,docker --outdir <OUTDIR>).nextflow run . -profile test_one_sample,docker --outdir <OUTDIR>).nextflow run . -profile debug,test,docker --outdir <OUTDIR>).docs/usage.mdis updated.docs/output.mdis updated.CHANGELOG.mdis updated.README.mdis updated (including new tool citations and authors/contributors).