-
Notifications
You must be signed in to change notification settings - Fork 828
Closed
Labels
Description
Description of feature
Currently, the pipeline generates three SummarizedExperiment .rds files while it would be more convenient and less confusing to generate a single one with different assay layers.
Current situation
All of which have a counts and abundance layer

The abundance layer is the same in all three objects
While the counts are different representing counts, length scaled counts and scaled counts, respectively.
Proposed solution
Create a single SummarizedExperiment with the following assays:
tpm(what is currently in "abundance", but the name is more explicit)countscounts_scaledcounts_length_scaledgene_lengths(what is currently insalmon.merged.gene_lengths.tsv)
possibly, it could be worth adding a vst layer generated by DESeq2::vst().
Create another one for the transcripts with the same layers.


