Seeking help with Tcga Target Gtex Expected Count Data
0
0
Entering edit mode
5 weeks ago

Hello everyone. I am new here. I am working on a project to identify differentially expressed gene of uterine cancer using TCGA and GTEX data. I have downloaded zip file of TCGA Gtex Expected Count Data, extracted the .txt file and saved it as zz_gencode.v23.annotation.csv file. However, I am not able to open the csv file and I am getting error.

Here is my code:

ExprSubsetBySamp = fread("TcgaTargetGtex_gene_expected_count.gz",
                         select = filterExpr)
probemap = fread("zz_gencode.v23.annotation.csv", select = c(1, 2));
exprALL = merge(probemap, ExprSubsetBySamp, by.x = "id", by.y = "sample");
Error: Elements listed in `by.x` must be valid column names in x.

Thank you so much.

R TCGA gTEX • 340 views
ADD COMMENT
2
Entering edit mode

The error is telling you that probemap (x) doesn't have a column named id .

ADD REPLY
0
Entering edit mode

Thank you so much. I will check my dataset.

ADD REPLY

Login before adding your answer.

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