-
Notifications
You must be signed in to change notification settings - Fork 3
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
Merge dev to master #87
Conversation
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
feat bumped up
adding closures to modules.config
trying to fix star_index channel cardinality
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
Solve some issues
|
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.
LGTM 🌟 It would be nice with some more eyes to look at it
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 to me!
Although, one thing is I should be able to run the test profile with --variant_caller gatk
right? I think there are some mismatches between what is given and what is expected as input to processes in that workflow. I think I have fixed it, but someone will have to tell me where it's appropriate for me to put these changes 😃
ch_out_drop_as_tsv = DROP_CONFIG_RUN_AS.out.drop_as_tsv ? DROP_CONFIG_RUN_AS.out.drop_as_tsv.collect() | ||
: Channel.empty() | ||
ch_out_drop_ae_rds = DROP_CONFIG_RUN_AE.out.drop_ae_rds ? DROP_CONFIG_RUN_AE.out.drop_ae_rds.collect() | ||
: 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.
: Channel.empty() | |
: Channel.of([]) |
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.
For consistency, I think its better to keek 'Channel.empty()' because it is what has been used in most instances, like at workflows/tomte.nf. If you want, we can also discuss ^^
ch_out_drop_gene_name_as = DROP_CONFIG_RUN_AS.out.drop_gene_name ? DROP_CONFIG_RUN_AS.out.drop_gene_name.collect() | ||
: Channel.empty() | ||
ch_out_drop_as_tsv = DROP_CONFIG_RUN_AS.out.drop_as_tsv ? DROP_CONFIG_RUN_AS.out.drop_as_tsv.collect() | ||
: 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.
: Channel.empty() | |
: Channel.of([]) |
ch_gene_panel_clinical_filter, | ||
ch_out_drop_ae_rds, | ||
ch_out_drop_ae_rds.ifEmpty([]), |
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.
ch_out_drop_ae_rds.ifEmpty([]), | |
ch_out_drop_ae_rds, |
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.
Initially it was as you suggested but when either the ae or as is turned off, then the filtering is not run. To be honest, I am not sure what the difference is exactly, if you want to, we can discuss.
ch_out_drop_gene_name, | ||
ch_out_drop_as_tsv | ||
ch_out_drop_as_tsv.ifEmpty([]) |
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.
ch_out_drop_as_tsv.ifEmpty([]) | |
ch_out_drop_as_tsv |
fix typos Co-authored-by: Felix Lenner <52530259+fellen31@users.noreply.github.com> Co-authored-by: Eva C <29628428+fevac@users.noreply.github.com>
Co-authored-by: Felix Lenner <52530259+fellen31@users.noreply.github.com>
Fix expected input for modules in the GATK subworkflow --------- Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
Add insert size calculation
Merge pull request #87 from genomic-medicine-sweden/dev
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).