PCA for multiple transcriptome-assemblies
0
0
Entering edit mode
4.6 years ago
Shahzad ▴ 30

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 • 971 views
ADD COMMENT
1
Entering edit mode

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

ADD REPLY
0
Entering edit mode

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

ADD REPLY
0
Entering edit mode

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

ADD REPLY
0
Entering edit mode

In R you can simply Principal Components Analysis

pca <- prcomp(read_count_df)

For plotting

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

Login before adding your answer.

Traffic: 1777 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6