-
Notifications
You must be signed in to change notification settings - Fork 4
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
Feature request: RSEM outputs - counts matrix for isoforms #137
Comments
Hi @TBrownmiller, thanks for your request. RENEE outputs both gene and isoform counts -- the isoform count matrix is |
Sort of. I think its a difference in formatting of the outputs. One of the R packages I use (EBSeq) that is usually directly compatible with RSEM outputs asks for a matrix file (file extension ".MATRIX") format, but the RENEE generated outputs are either a txt or tsv format which aren't directly compatible. |
Gotcha. We'll make this available in the next release of RENEE -- v2.6. |
Hello @TBrownmiller , From the package vignette, it says, The object Data should be a G − by − S matrix containing the expression values for each gene and each sample, where G is the number of genes and S is the number of samples. These values should exhibit And the
You can create a new data matrix with just rownames and expression values. Try the following code:
The Let us know if that works. |
@samarth8392 thanks for posting the R code to transform the count table into a matrix. Vishal and I discussed this issue and decided to go ahead and add a rule to create the matrix with rsem -- it runs very quickly and doesn't add much overhead at all. This way our users won't have to transform the other output themselves. See #149 |
Hello,
Would it be possible to add to the RSEM its feature to generate a counts matrix for the isoforms data?
Within the RSEM documentation it states it has the ability to do this using the following command:
rsem-generate-data-matrix sampleA.[genes/isoforms].results sampleB.[genes/isoforms].results ... > output_name.counts.matrix
I was able to do this manually by loading RSEM as a module in biowulf so there is no rush for this, but I thought it would be useful since many downstream tools use count matrices
Thanks!
The text was updated successfully, but these errors were encountered: