-
Notifications
You must be signed in to change notification settings - Fork 180
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
fix bugs in simpleleaf_index.nf and config files #429
Conversation
Warning Newer version of the nf-core template is available. Your pipeline is using an old version of the nf-core template: 3.0.2. For more documentation on how to update your pipeline, please see the nf-core documentation and Synchronisation documentation. |
Could you please describe in more detail what you are trying to accomplish here? Please be aware that simpleaf has been refactored and updated in #424, so maybe some of your changes might not be necessary anymore. |
I think @haibol2016 did a lot of different things here, some of which are good, some are bad and some are not necessary. Some remarks
|
I may have made some mistakes in my branch. I don't know that a variable with "def" is not accessible in a "template file". I tried to build a index to use "salmon" as the aligner. If a user provides "params.genome_fasta", "params.transcript_fasta", and "params.gtf", the module will fail, because genome_fasta (should be specified together with gtf) is not compatible wiht transcript_fasta. Instead the code should be as follows. `def seq_inputs = (params.transcript_fasta) ? "--refseq $transcript_fasta" : "--fasta $genome_fasta --gtf $transcript_gtf"
Haibo |
As I now had a closer look at #424, I can say that it tackles the Still, @haibol2016 thanks for the contribution! We're always happy to see new contributors, but maybe next time open an issue or ask on slack first :) |
Sure. Thanks for fix the issues.
Best,
Haibo
…On Tue, Feb 11, 2025 at 3:27 AM Nico Trummer ***@***.***> wrote:
As I now had a closer look at #424
<#424>, I can say that it tackles
the transcript_fasta/genome_fasta problem. As #424
<#424> is a more sustainable fix
(also moves some modules to nf-core/modules and contains a complete rewrite
of the alevin subworkflow), I will close this PR.
Still, @haibol2016 <https://github.com/haibol2016> thanks for the
contribution! We're always happy to see new contributors, but maybe next
time open an issue or ask on slack first :)
—
Reply to this email directly, view it on GitHub
<#429 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ALR5WD5GCZDRP5JLKEW73ED2PGYALAVCNFSM6AAAAABWMQOGSKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMNJQGEYDSMBQGI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
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).