Closed biozzq closed 1 year ago
Good questions.
100 bootstraps is fine, we found 20-30 is sufficient but more is fine. The objects will just be a bit larger.
A good way to save the normalized data is:
se <- computeInfRV(se)
posterior_mean <- assays(se)[["mean"]]
write.csv(posterior_mean, file="posterior_mean_counts_scaled.csv")
Thank you. It is ok for me to output the scaled counts now after changing posterior_mean <- assay(se)[["mean"]]
to posterior_mean <- assays(se)[["mean"]]
, in which I think you have a typo.
Yes a typo.
Dear @mikelove
Thank you for your package. This is my first time to run Swish ( following the vignette, https://bioconductor.org/packages/devel/bioc/vignettes/fishpond/inst/doc/swish.html) using inferential replicates computed by salmon.
First, when running salmon, I set
--validateMappings --seqBias --gcBias --numBootstraps 100
to generate bootstrap samples. Here, you typically recommend 20-30 inferential replicates, but I set--numBootstraps 100
, would this have an effect on the quantification results?Second, after running following commands, how to save the scaled counts to a file? The
se
object contains following metadata.Looking forward to your reply, thank you. Yours sincerely.
Zheng zhuqing