Skip to content
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

Merged
merged 164 commits into from
Mar 18, 2024
Merged

Merge dev to master #87

merged 164 commits into from
Mar 18, 2024

Conversation

Lucpen
Copy link
Collaborator

@Lucpen Lucpen commented Mar 11, 2024

PR checklist

  • Merge dev to master, you can see changes in the CHANGELOG
  • If you've fixed a bug or added code that should be tested, add tests!
  • If you've added a new tool - have you followed the pipeline conventions in the contribution docs
  • Make sure your code lints (nf-core lint).
  • Ensure the test suite passes (nextflow run . -profile test,docker --outdir <OUTDIR>).
  • Check for unexpected warnings in debug mode (nextflow run . -profile debug,test,docker --outdir <OUTDIR>).
  • Usage Documentation in docs/usage.md is updated.
  • Output Documentation in docs/output.md is updated.
  • CHANGELOG.md is updated.
  • README.md is updated (including new tool citations and authors/contributors).

lucia.pena.perez@scilifelab.se and others added 30 commits November 6, 2023 13:06
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
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>
Copy link

github-actions bot commented Mar 11, 2024

nf-core lint overall result: Passed ✅ ⚠️

Posted for pipeline commit 064559c

+| ✅ 152 tests passed       |+
#| ❔ 317 tests were ignored |#
!| ❗  10 tests had warnings |!

❗ Test warnings:

  • files_exist - File not found: .github/workflows/awstest.yml
  • files_exist - File not found: .github/workflows/awsfulltest.yml
  • nextflow_config - Config manifest.version should end in dev: 1.1.0
  • readme - README contains the placeholder zenodo.XXXXXXX. This should be replaced with the zenodo doi (after the first release).
  • pipeline_todos - TODO string in ci.yml: You can customise CI pipeline run tests as required
  • pipeline_todos - TODO string in methods_description_template.yml: #Update the HTML below to your preferred methods description, e.g. add publication citation for this pipeline
  • pipeline_todos - TODO string in test_full.config: Specify the paths to your full test data ( on nf-core/test-datasets or directly in repositories, e.g. SRA)
  • pipeline_todos - TODO string in test_full.config: Give any required params for the test so that command line flags are not needed
  • pipeline_todos - TODO string in base.config: Check the defaults for all processes
  • pipeline_todos - TODO string in base.config: Customise requirements for specific processes.

❔ Tests ignored:

✅ Tests passed:

Run details

  • nf-core/tools version 2.13.1
  • Run at 2024-03-15 16:51:19

@Lucpen Lucpen requested review from fevac and fellen31 March 12, 2024 08:53
Copy link
Contributor

@fevac fevac left a 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

bin/drop_filter_results.py Outdated Show resolved Hide resolved
bin/drop_filter_results.py Outdated Show resolved Hide resolved
bin/drop_filter_results.py Outdated Show resolved Hide resolved
docs/usage.md Outdated Show resolved Hide resolved
Copy link
Contributor

@fellen31 fellen31 left a 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 😃

README.md Outdated Show resolved Hide resolved
assets/methods_description_template.yml Show resolved Hide resolved
conf/modules/call_variants.config Outdated Show resolved Hide resolved
conf/modules/prepare_references.config Outdated Show resolved Hide resolved
docs/README.md Outdated Show resolved Hide resolved
docs/usage.md Outdated Show resolved Hide resolved
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()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
: Channel.empty()
: Channel.of([])

Copy link
Collaborator Author

@Lucpen Lucpen Mar 15, 2024

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()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
: Channel.empty()
: Channel.of([])

ch_gene_panel_clinical_filter,
ch_out_drop_ae_rds,
ch_out_drop_ae_rds.ifEmpty([]),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
ch_out_drop_ae_rds.ifEmpty([]),
ch_out_drop_ae_rds,

Copy link
Collaborator Author

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([])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
ch_out_drop_as_tsv.ifEmpty([])
ch_out_drop_as_tsv

Lucpen and others added 2 commits March 15, 2024 11:15
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>
@Lucpen Lucpen merged commit c5bf587 into master Mar 18, 2024
16 checks passed
Lucpen added a commit that referenced this pull request Mar 18, 2024
Merge pull request #87 from genomic-medicine-sweden/dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants