gene expression of specifics gene
0
0
Entering edit mode
2.7 years ago

I want to compare the gene expression of Diabetes type 2 for my experiment.

I have 3 samples: control, after treatment (drug A), After treatment (drug B).

There are about 20 genes relevant to the Genetics of type 2 diabetes. Is there any instruction on how to use a heat map for these genes in R?

I appreciate if you share me the link.

my second question: do you have an instruction/pipeline for KEGG diabetes type 2 pathway map?

RNA-Seq • 2.0k views
ADD COMMENT
0
Entering edit mode

You did not mentions what kind of instruction do you need?

  1. Do you need the instruction to make a heatmap of these 20 genes? Are you already using any package like pheatmap or something?
  2. Yes there are pipelines. One of them is using Gage

https://bioconductor.org/packages/release/bioc/vignettes/gage/inst/doc/gage.pdf

ADD REPLY
0
Entering edit mode

Thanks for the link.

I imported the data into R

But, how draw a heat map for 20 genes?

I have lof2FC of each sample. How do I do the heatmap? Thanks in advance

 >mydata <- read.csv("C:/Users/.../Downloads/ diabetestype2.csv")
> df <- data.frame(mydata)
> print (df)

Gene     X1STD      X2Cin   X3Met  
1           GRK6  2.063400  0.0000000 -0.3733
.
.
.
> metaData <- read.csv('C:/Users/lazim/Downloads/metadata.csv ', header = TRUE, sep = ",")
> metaData 

    id dex    Drug Geoid
1 1STD   B Notreat GSM14
2 2Cin   A     Cin GSM15
3 3Met   C     Met GSM19

> mypalette <- brewer.pal(11,"RdYlBu")

> morecols <- colorRampPalette(mypalette)

> col.cell <- c("purple","orange")[ metaData$id]

> heatmap.2(df,col=rev(morecols(50)),trace="none", main="Top 72 most relevant genes across samples in type 2 diabetes",ColSideColors=col.cell,scale="row")

**Error in heatmap.2(df, col = rev(morecols(50)), trace = "none", main = "Top 72 most relevant genes across samples in type 2 diabetes",  :   could not find function "heatmap.2"**
ADD REPLY
1
Entering edit mode

You're doing lots of posts, all of them related to R errors. Did you read the manuals for EdgeR or DEseq2?? Every post is related to this subject. Did you load the gplot package? Please, read the manuals, show some effort in resolving those kinds of errors. A simple google search for this error will give you the answer!

ADD REPLY
1
Entering edit mode

You don't have necessary package installed/loaded in your workspace.

  • If already installed then do this- library("gplots")
  • If not then this- install.packages("gplots")

This might help https://biocorecrg.github.io/CRG_RIntroduction/heatmap-2-function-from-gplots-package.html

If you are using R for the first time, please ask for help from your colleagues or as @brunobsouzaa suggested go through the basics of using R

ADD REPLY
0
Entering edit mode

Thanks Hyper-Odin

ADD REPLY
0
Entering edit mode

I have log2(Fold Change) for two groups. Is there any instruction/pipelines I can use for gene expression using log2(Fold Change) in R?

My second question? less than <? is downregulated and more than >? upregulated? Do you have instructions for that using log2(Fold Change)?

ADD REPLY
0
Entering edit mode
  • Again, you did not mention the kind of pipeline you want for gene expression !
  • It is completely up to you what should be your cutoff value. You should refer to similar papers. Generally it varies between ±0485 to ±0.585 (log2fold change) which converts to 1.4 -1.5 in terms fold change
ADD REPLY
0
Entering edit mode

HelloHyper_Odin , NEBNext Ultra II + Full QC, Library Prep Kit (Illumina) and sequenced with NextSeq, HO150c single read).

I download log2fold change from basespaceIllumina in csv format.

ADD REPLY
0
Entering edit mode

Still lack of information or you don't know what you want to do... If you already have the log2fold change, it means that those files went through some pipeline and gave you those results. If you want to know how to build a heatmap, follow this topic. Another thing you can do is to use reactome to analyze your DE genes.

ADD REPLY
0
Entering edit mode

What does it mean Status: OK, or Low in RNA analysis?

Gene:WASH7P
Status:OK
log2(Fold Change): 0.05
q Value:1.00E+00
Significant: FALSEenter image description here

ADD REPLY
0
Entering edit mode

This comment above is completely out of context. Please edit the toplevel question and add a precise question. Otherwise this question might be deleted as it is basically a collection of comments without any content. As Hyper_Odin said already there is currently not enough details to add any answer.

ADD REPLY

Login before adding your answer.

Traffic: 2076 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