-
Notifications
You must be signed in to change notification settings - Fork 8
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
Fixes #65 #67
Fixes #65 #67
Conversation
I see that the linting check failed, but it seems to run fine locally with nf-core 2.14.1 and nextflow 24.04.4. |
@evancofer sorry for the delay, can you add a note in the CHANGELOG.md about this, then I can work on merging, thanks! |
@lpantano I actually think there are still some bugs in this code. I don't have the bandwidth to fix this though, so you can close it if needed. IIRC I gave up on this, because it ended up being a little involved. I think the easiest way to fix the problem however would be just update the RNA-seq portion of this to use a more recent version of the RNA-seq pipeline that this is based off of. I think it worked fine when I used that. |
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.
Sorry to miss this earlier.
Maybe at this point we should start by copying wholesale the equivalent unit from rnaseq dev
, and try from there. I think we may have had some changes in the meantime.
ch_transcriptome_bam = BAM_SORT_STATS_SAMTOOLS.out.bam | ||
ch_transcriptome_bai = BAM_SORT_STATS_SAMTOOLS.out.bai |
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.
ch_transcriptome_bam = BAM_SORT_STATS_SAMTOOLS.out.bam | |
ch_transcriptome_bai = BAM_SORT_STATS_SAMTOOLS.out.bai | |
ch_transcriptome_sorted_bam = BAM_SORT_STATS_SAMTOOLS.out.bam | |
ch_transcriptome_sorted_bai = BAM_SORT_STATS_SAMTOOLS.out.bai |
rnaseq does this (also rename the input to the function below), so that the unsorted bam is not over-written. Maybe try this first?
I opened a new PR #75 to solve the UMI issue. |
This has now been addressed (see above), closing. |
This is a minor change to fix #65 . This error is caused whenever UMI deduplication is run. The error is due to the fact that
BAM_DEDUP_STATS_SAMTOOLS_UMITOOLS_GENOME
andBAM_DEDUP_STATS_SAMTOOLS_UMITOOLS_TRANSCRIPTOME
are not included or defined anywhere. They should be included by includingBAM_DEDUP_STATS_SAMTOOLS_UMITOOLS
from thebam_dedup_stats_samtools_umitools
workflow. A working version of this (with minor changes) is already in the nf-core rnaseq pipeline, which served as the template for many of these changes.PR checklist
nf-core lint
).nf-test test main.nf.test -profile test,docker
).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).