This is a test version of Biostars. For the public version, visit https://www.biostars.org.
gene expression of specifics gene

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

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"**

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!

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)?

  • 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

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.

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.

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

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.

0 answers

No answers yet.

Log in to answer this question.