I downloaded the folder ‘RNA-seq Gencode v3c summarized to genes’ and loaded the dataframes into R. From what I understand, the columns in the ‘expression_matrix.csv’ file are the samples listed in the ‘columns_metadata.csv’ file. Therefore, the number of columns in ‘expression_matrix.csv’ should equal the number of rows in ‘columns_metadata.csv’ However, when I check, the ‘expression_maxtrix.csv’ has 579 columns whereas the ‘columns_metadata.csv’ file has 524 rows.
> expressionMatrix <- read.csv(file='expression_matrix.csv',sep=',',header=TRUE)
> columnsMeta <- read.csv(file='columns_metadata.csv',sep=',',header=TRUE)
> ncol(expressionMatrix)
[1] 579
> nrow(columnsMeta)
[1] 524