-
Notifications
You must be signed in to change notification settings - Fork 186
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
the output files generated by using STAR in snakemake-wrappers should be more comprehensive. #2756
Comments
When I use the |
From STAR's manual:
So, I'd say that a new file is created. Can you double-check it? |
Yes, a new file is created. I modify in the local wrapper.py, gave Aligned.toTranscriptome.out.Bam one output parameter. |
If you modified |
This issue was marked as stale because it has been open for 6 months with no activity. |
I'm currently working on setting up a simple RNA-seq analysis pipeline using snakemake, and I've integrated the STAR wrapper from snakemake-wrappers. However, I've run into an issue where specifying
--quantMode TranscriptomeSAM
prevents me from extracting theAligned.toTranscriptome.out.bam
file as an output. I believe this file is essential for subsequent transcript quantification.After examining the corresponding
wrapper.py
file, I noticed that within thewith tempfile.TemporaryDirectory() as tmpdir:
block, you use thecat
command to output specific temporary files as result files. However, I observed that you only provided options such asReadsPerGene.out.tab
,Chimeric.out.junction
,SJ.out.tab
,etc.
, but there is no code for outputtingAligned.toTranscriptome.out.bam.
The text was updated successfully, but these errors were encountered: