comparison rmarkdown_deseq2_count_matrix.Rmd @ 2:8ceda5896765 draft default tip

fix error
author mingchen0919
date Wed, 03 Jan 2018 15:04:30 -0500
parents 629323b5fc0c
children
comparison
equal deleted inserted replaced
1:629323b5fc0c 2:8ceda5896765
48 # Match sample names 48 # Match sample names
49 49
50 The goal of this step is to rearrange the rows of the column data matrix so that the samples rows in the count data matrix and the sample columns in the count data matrix are in the same order. 50 The goal of this step is to rearrange the rows of the column data matrix so that the samples rows in the count data matrix and the sample columns in the count data matrix are in the same order.
51 51
52 ```{r 'match sample names'} 52 ```{r 'match sample names'}
53 col_data = col_data[col_names, ] 53 col_data = col_data[col_names, , drop = FALSE]
54 datatable(col_data) 54 datatable(col_data)
55 ``` 55 ```
56 56
57 # DESeqDataSet 57 # DESeqDataSet
58 58