This is a test version of Biostars. For the public version, visit https://www.biostars.org.
PCA for multiple transcriptome-assemblies

Hi Can we perform Principal component analysis PCA for multiple transcriptome-assemblies to show the shared similarity between them?

assembly rna-seq next-gen r

Yes, you can plot a PCA on the normalized read-count or expression data of the transcriptome-assemblies.

What exact input data do you have? - just the assembled transcript sequences in FASTA format?

I have gene count data for PCA analysis, can you suggest the pipeline in R for the PCA analysis

In R you can simply Principal Components Analysis

pca <- prcomp(read_count_df)

For plotting

library(ggfortify)  
autoplot(pca, loadings.label = TRUE)

0 answers

No answers yet.

Log in to answer this question.