-
Notifications
You must be signed in to change notification settings - Fork 5
Milestone 2.2.0 #66
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
Merged
Merged
Milestone 2.2.0 #66
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is in preparation for CRAM support.
2.1.0 release
FASTA_BGZIP_INDEX_DICT_SAMTOOLS is a subworkflow that takes a FASTA file regardless of its compression, and returns it BGZIPped together with index files needed to sort the alignments and a sequence dictionary needed to ensure that alignments of different _queries_ to the same _target_ can be merged later.
Pushing this commit now to trigger a new CI run of the nf-core branch protection. This said, multiqc_assemblyscan_plot_data combines one file per _query_ genome, and removing the `tag` ensure that the list of file names does not clutter the screen when monitoring the pipeline run. The nf-core MultiQC module also does not have a `tag`. Closes #64
jfy133
approved these changes
May 22, 2025
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.
General minor things:
- Missing
citations.md
entry for SAMTOOLS - Possibly missing diagram update to add SAMTOOLS
- Missing reference to SAMTOOLS on
README
But otherwise code nice and clean as always, so will give you a premptive approval :)
subworkflows/local/fasta_bgzip_index_dict_samtools/tests/main.nf.test
Outdated
Show resolved
Hide resolved
Co-authored-by: James A. Fellows Yates <[email protected]>
Co-authored-by: James A. Fellows Yates <[email protected]>
…into milestone_2.2.0
Thanks a lot for the very useful comments. I have added credit to Samtools and opened an issue about the diagram (#68) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds
bam
andcram
to the list of supported export formats. A new subworkflow takes care of ensuring that the genome file is appropriately compressed and indexed for CRAM encoding and to support the user running BAM/CRAM indexing commands later. A sequence dictionary is computed, and will be useful in a future update oflast/mafconvert
(PR under review).Other updates preparing the 2.2.0 release will follow, but I thought that it would be useful to review this bunch of commits separately. In particular I welcome critical comments on how I manage the optional run of the subworkflow in
workflows/pairgenomealign.nf
.PR checklist
nf-core pipelines 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).