-
Notifications
You must be signed in to change notification settings - Fork 113
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
Migrate BUSCO to nf-core module #730
base: dev
Are you sure you want to change the base?
Conversation
cab7dbd
to
25b72f1
Compare
Warning Newer version of the nf-core template is available. Your pipeline is using an old version of the nf-core template: 3.1.0. For more documentation on how to update your pipeline, please see the nf-core documentation and Synchronisation documentation. |
@jfy133 It's green now 🎉 Some questions:
EDIT: Regarding second point, I managed to get a pretty simple and elegant solution to store all the downloaded lineages across all the samples, basically puting each of the lineage directories as ouputs instead of the whole The PR should be ready merging nf-core/modules#7210. |
Is there scope to add this as an optional input to the BUSCO module itself? For some context, the problem I encountered with BUSCO was that the temporary working files take up a lot of storage space on disk, so running BUSCO on (in my case) 1000s of bins meant that my available scratch quota was quickly filling up and leading to mag runs that couldn't finish. So it would be good to try and keep this as an option if possible as I imagine this is a plausible issue for other mag users also! |
Hi @prototaxites, |
If that's the case, maybe we don't need it? |
e5255ed
to
a44eb56
Compare
I made a last minor addition to this PR, I replaced the module used to combine bin qc summaries by a nf-core one (csvtk/concat). |
This PR migrates from the local BUSCO module to the nf-core one.
Main changes
csvtk/concat
to merge BUSCO andUNTAR
to prepare database instead of the custom modules--save_busco_db
with publishDir directly.COMBINE_TSV
local module by nf-corecsvtk/concat
Breaking changes
--busco_clean
is not supported in this new setup, so the param should be deprecatedPR checklist
Closes #484.
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).