-
Notifications
You must be signed in to change notification settings - Fork 717
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
Split STAR modules to fix issue with nf-core download #835
Conversation
|
@@ -58,7 +58,7 @@ process { | |||
ext.args2 = '--no-same-owner' | |||
} | |||
|
|||
withName: 'UNTAR_.*|STAR_GENOMEGENERATE|HISAT2_BUILD' { | |||
withName: 'UNTAR_.*|STAR_GENOMEGENERATE|STAR_GENOMEGENERATE_IGENOMES|HISAT2_BUILD' { |
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.
@mahesh-panchal if you are around can you double-check this logic looks good. I have tested and it seems to be working but wanted a sanity check.
@@ -495,7 +495,7 @@ if (!params.skip_alignment) { | |||
|
|||
if (!params.skip_alignment && params.aligner == 'star_salmon') { | |||
process { | |||
withName: '.*:ALIGN_STAR:STAR_ALIGN' { | |||
withName: '.*:ALIGN_STAR:STAR_ALIGN|.*:ALIGN_STAR:STAR_ALIGN_IGENOMES' { |
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.
Same here @mahesh-panchal
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! Well done 🚀
@@ -22,24 +23,53 @@ workflow ALIGN_STAR { | |||
// | |||
// Map reads with STAR | |||
// | |||
STAR_ALIGN ( reads, index, gtf, star_ignore_sjdbgtf, seq_platform, seq_center, is_aws_igenome ) | |||
ch_versions = ch_versions.mix(STAR_ALIGN.out.versions.first()) | |||
ch_orig_bam = Channel.empty() |
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.
Out of curiosity, what orig
stands for, I guess ig=ignenomes, o=output?, r ??
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.
orig = original 🤣 It's because STAR can generate loads of different types of BAM files.
Closes #834