You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working through the tutorial and I have my own RNA-seq data that I would like to process with linseed. Does the LinseedObject function require data be formatted exactly as "GSE19830_series_matrix.txt"? I have an RNA-seq data set that has annotation for genes , raw counts, and RPKM. I don't know how many cell types are present, but I expect at least 10 -12.
Can you tell me which of these fields must be supplied?
Fields:
‘exp’ List of two elements raw and normalized gene expression
dataset
‘name’ Character, optional, dataset name
‘cellTypeNumber’ Identified cell type number, required for
projection, corner detection and deconvolution
‘projection’ Projection of genes into space lower-dimensionality
(presumably simplex)
‘endpoints’ Simplex corners (in normalized, non-reduced space)
‘endpointsProjection’ Simplex corners (in reduced space)
‘distances’ Stores distances for every gene to each corner in
reduced space
‘markers’ List that stores signatures genes for deconvolution, can
be set manually or can be obtained by ‘selectGenes(k)’
‘signatures’ Deconvolution signature matrix
‘proportions’ Deconvolution proportion matrix
‘pairwise’ Calculated pairwise collinearity measure
I can get the 'normCounts' out from the R package 'edgeR', if this is necessary, how to format it? Any advice or assistance is greatly appreciated!! Thank you!
The text was updated successfully, but these errors were encountered:
Hi! I'm also trying/testing linseed and used CPMs (from edgeR), TPMs (from RSEM) and also FPKM (cufflinks) matrices.
Matrices looked like:
transcript_id sample1 sample2 sample3 <--------header
ENST000000000 5.456 7.876 4.194 <-------- transcript/gene id and it's expression values per sample in CPMs/TPMs/FPKMs
The expected cell type number entered by hand into R script. Idk, if linseed allows to add more than one number simultaneously. I just tried different expected numbers per each script run.
By now my results are not as beautiful as they could be.
You can just provide the expression matrix to a constructor of the Linseed Class (basically matrix objects)
I would suggest using something like TPMs, any normalization that already took library size into an account.
Hello!
I am working through the tutorial and I have my own RNA-seq data that I would like to process with linseed. Does the LinseedObject function require data be formatted exactly as "GSE19830_series_matrix.txt"? I have an RNA-seq data set that has annotation for genes , raw counts, and RPKM. I don't know how many cell types are present, but I expect at least 10 -12.
Can you tell me which of these fields must be supplied?
The header of my RNA-seq data looks like this:
I can get the 'normCounts' out from the R package 'edgeR', if this is necessary, how to format it? Any advice or assistance is greatly appreciated!! Thank you!
The text was updated successfully, but these errors were encountered: