-
Notifications
You must be signed in to change notification settings - Fork 169
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
Release v2.7.1 #356
Release v2.7.1 #356
Conversation
Bump version to 2.8.0dev
Cellranger 10XV4
Update modules
Fix star index issues
Update modules
Bump version for 2.7.1 release
Re-enable schema linting
Fix usage of getGenomeAttribute
|
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.
No blockers from me!
@@ -67,7 +71,8 @@ workflow SCRNASEQ { | |||
ch_salmon_index = params.salmon_index ? file(params.salmon_index) : [] | |||
|
|||
//star params | |||
ch_star_index = params.star_index ? file(params.star_index) : [] | |||
star_index = params.star_index ? file(params.star_index, checkIfExists: true) : null | |||
ch_star_index = star_index ? [[id: star_index.baseName], star_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.
Is it correct to call this a ch_
prefix when it's not actually in a channel object yet (it seems)?
I'm assuming you're fine with the code, I'm just checking something hasn't been missed
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 also use the ch_
prefix for value channels, or basically any variable that is used as a channel and fed into a process.
Are there "official", documented nf-core conventions somewhere?
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.
No, no standards.
Just checking that a channel generation wasn't missing anywhere, where it should have been :)
Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
This reverts commit 6da0787.
Fix: fb_reference
Co-authored-by: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com>
Fix that tests are not executed
PR checklist
nf-core 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).