-
Notifications
You must be signed in to change notification settings - Fork 415
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
Added Minimap2 alignment #1486
base: dev
Are you sure you want to change the base?
Added Minimap2 alignment #1486
Conversation
|
@nf-core-bot fix linting pretty please 🙏 |
Please test with the last commit |
Thanks for the efforts @EgorGuga |
@nf-core-bot fix linting pretty please 🙏 |
| mappability | ControlFREEC | http://xfer.curie.fr/get/vyIi4w8EONl/out100m2_hg38.zip | http://boevalab.inf.ethz.ch/FREEC/tutorial.html | | ||
| minimap2 | Minimap2 | minimap2 -x sr -d ${fasta.baseName} $fasta | | |
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.
| minimap2 | Minimap2 | minimap2 -x sr -d ${fasta.baseName} $fasta | | | |
| minimap2 | Minimap2 | `minimap2 -x sr -d ${fasta.baseName} $fasta` | | |
@@ -733,6 +733,13 @@ | |||
"hidden": true, | |||
"help_text": "If you use AWS iGenomes, this has already been set for you appropriately." | |||
}, | |||
"minimap2": { |
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 would have named that parameter minimap2_index
.
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 think we have bwa and bwamem2, so I'm happy with just minimap2
Updated version of pull-request #1459
Overview
In this pull-reqest, we added the ability to align reads using the minimap2 tool. The use of the tool is justified by the fact that this tool is popular and is used in commercial solutions, particularly in MegaBOLT.
P.S.
As long as the sort_bam variable is hardcoded as true a call of the minimap2 tool will not cause any problems.
PR checklist
nf-core lint
).nextflow run . -profile 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).