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

nf-core/isoseq version 2 #32

Merged
merged 43 commits into from
Sep 5, 2024
Merged

nf-core/isoseq version 2 #32

merged 43 commits into from
Sep 5, 2024

Conversation

sguizard
Copy link
Collaborator

@sguizard sguizard commented Aug 29, 2024

v2.0.0 - Sapphire Duck

New entrypoint option to skip isoseq pre-processing.
Update the pipeline to nf-core 2.14.1.
Update modules.
Close #25
Close #27
Close #10

Added

A new entreypoint system has been implemented to allow the user where to start the analysis.
The isoseq entrypoint runs the full pipeline.
The map entrypoint runs the pipeline from the mapping step.
This new entreypoint option make possible to use the isoseq pipeline for analysis PacBio data when subreads are not provided, or for users who want to benefit from the mapping + TAMA analysis for their Nanopore data.

Fixed

  • Update modules to their nf-test version (bamtools/convert, custom/dumpsoftwareversions, gnu/sort, gstama/collapse/ gstama/merge, gstama/polyacleanup, gunzip, isoseq/refine, lima, minimap2/align, pbccs,ultra/align, ultra/index)

  • Since isoseq3 switch to version 4, it has been rename isoseq

    Tool Previous version New version
    bamtools/convert 2.5.2 2.5.2
    isoseq 3.8.2 4.0.0
    lima 2.7.1 2.9.0
    minimap2/align 2.24 2.28
    gnu/sort 8.25 9.3
    multiqc 1.21 1.24.1

PR checklist

  • This comment contains a description of changes (with reason).
  • 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
  • If necessary, also make a PR on the nf-core/isoseq branch on the nf-core/test-datasets repository.
  • Make sure your code lints (nf-core lint).
  • Ensure the test suite passes (nextflow run . -profile 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).

nf-core-bot and others added 30 commits September 25, 2023 15:16
require a meta map in newer version
give the user the possibility to start from the mapping step and do not run isoseq pre-analysis.
Copy link

github-actions bot commented Aug 29, 2024

nf-core lint overall result: Passed ✅ ⚠️

Posted for pipeline commit 6551adf

+| ✅ 198 tests passed       |+
#| ❔   1 tests were ignored |#
!| ❗   6 tests had warnings |!

❗ Test warnings:

  • nextflow_config - Config manifest.version should end in dev: 2.0.0
  • pipeline_todos - TODO string in awsfulltest.yml: You can customise AWS full pipeline 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 main.nf: Optionally add in-text citation tools to this list.
  • pipeline_todos - TODO string in main.nf: Optionally add bibliographic entries to this list.
  • pipeline_todos - TODO string in main.nf: Only uncomment below if logic in toolCitationText/toolBibliographyText has been filled!

❔ Tests ignored:

  • files_unchanged - File ignored due to lint config: .github/workflows/linting.yml

✅ Tests passed:

Run details

  • nf-core/tools version 2.14.1
  • Run at 2024-09-05 16:00:18

Copy link
Contributor

@nvnieuwk nvnieuwk left a comment

Choose a reason for hiding this comment

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

Two small comments, but it LGTM if those are fixed! Good job!

main.nf Outdated Show resolved Hide resolved
nextflow.config Outdated Show resolved Hide resolved
@nvnieuwk suggestion

Co-authored-by: Nicolas Vannieuwkerke <101190534+nvnieuwk@users.noreply.github.com>
Copy link

@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.

Nice, just small comments!

CHANGELOG.md Outdated Show resolved Hide resolved
This report has been generated by the <a href="https://github.com/nf-core/isoseq/1.1.5" target="_blank">nf-core/isoseq</a>
analysis pipeline. For information about how to interpret these results, please see the
<a href="https://nf-co.re/isoseq/1.1.5/output" target="_blank">documentation</a>.
This report has been generated by the <a href="https://github.com/nf-core/isoseq/tree/dev" target="_blank">nf-core/isoseq</a> analysis pipeline. For information about how to interpret
Copy link

Choose a reason for hiding this comment

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

bump version to version 2?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Updated.

Copy link
Collaborator Author

@sguizard sguizard Sep 5, 2024

Choose a reason for hiding this comment

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

nf-core lint is expecting having dev and not 2.0.0
Should I revert to dev?

Copy link

Choose a reason for hiding this comment

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

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Copy link

Choose a reason for hiding this comment

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

One last try with releases in there, https://github.com/nf-core/isoseq/releases/tag/2.0.0? Looks like that should be it https://github.com/nf-core/tools/blob/930ece572bf23b68c7a7c5259e918a878ba6499e/nf_core/lint/multiqc_config.py#L102-L105

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I gave a try with 2.0.0dev and 2.0.0, still the same error :/

Copy link

Choose a reason for hiding this comment

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

Alright, not sure why. I'll approve and you can decide if you want to try further or revert back to using dev. I think it's nice to have the link to the actual version in the MultiQC report though.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Thanks for your time and approval.
I'm gonna leave it to 2.0.0, as it's the target version.

docs/usage.md Outdated Show resolved Hide resolved
main.nf Outdated Show resolved Hide resolved
nextflow.config Outdated Show resolved Hide resolved
conf/test_minimap2_map_entrypoint.config Outdated Show resolved Hide resolved
@sguizard sguizard merged commit c7536ab into master Sep 5, 2024
10 checks passed
@sguizard
Copy link
Collaborator Author

sguizard commented Sep 5, 2024

Thanks @nvnieuwk and @fellen31 for your time and reviews! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
4 participants