-
Notifications
You must be signed in to change notification settings - Fork 716
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
add nf-tests for star_align_igenomes #1233
Conversation
|
@@ -8,20 +8,20 @@ process STAR_ALIGN_IGENOMES { | |||
'biocontainers/mulled-v2-1fa26d1ce03c295fe2fdcf85831a92fbcbd7e8c2:59cdd445419f14abac76b31dd0d71217994cbcc9-0' }" | |||
|
|||
input: | |||
tuple val(meta), path(reads) | |||
tuple val(meta), path(reads, stageAs: "input*/*") |
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.
Why do you need stageAs here?
tuple val(meta), path('*Log.final.out') , emit: log_final | ||
tuple val(meta), path('*Log.out') , emit: log_out | ||
tuple val(meta), path('*Log.progress.out'), emit: log_progress | ||
path "versions.yml" , emit: versions | ||
|
||
tuple val(meta), path('*d.out.bam') , optional:true, emit: bam |
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 this channel supposed to be a superset of bam_sorted channel?
@ramprasadn I copied the whole logic from the star align module, we need another local version to deal with older indexes in igenomes |
Cool! I'm a little puzzled by the choice of the *d.out.bam pattern to populate the bam channel, considering it could potentially clash with the *sortedByCoord.out.bam pattern used for the bam_sorted channel. However, since this line was added nearly a year ago and hasn't posed any problems yet, I'll just overlook it. |
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.
LGTM!
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).