Open bioinfolabmu opened 11 months ago
--snakemakeOptions notemp=True
. Make sure to check if this works as expected with --dryrun
, because might just delete some files you wanted to keep after all...So it is possible indeed. If you don't have too many samples then I think it is the easiest and least error prone to just run them in separate folders. However if you have a lot of samples, or are limited by compute/storage/time then you can reuse some of the seq2science output.
Adding to Maarten's asnwer: you can change the counts_dir
and/or final_bam_dir
in the config. That way, the final output is kept separately. Check out all configurable options.
Question We are comparing different aligners and quantifiers to see their impacts on the same RNA-Seq raw data. Of course, it took long time to run one run. My guess is that we do not have to re-run the every step in the RNA-seq pipeline, but only re-run a few step that we want to compare.
For example, I want to use different qualtifier (Salmon versus htseq).
What have I tried I have finished running the pipeline and htseq, and I have not start the downstream differential analysis. Now, I want to modify the config.yaml file to use salmon as the quantifier. My question is that both quantifier results should be saved in my results folder. They are not conflicting to each other, right? Then, next step, is to bring back the differential analysis part of pipeline to finish the salmon-based DEG results and htseq-based results.
My questions is that all these results can be saved in the same "results" folder and let config.yaml to tell which one quantifier to use for DEG analysis. right. Or, I should run entirely pipeline again seperately?
Thank you for your attention and help.