The design parameter must point to a file with the following structure:
...
...
@@ -163,6 +170,20 @@ The gene_names parameter must have the following structure:
1. The `gene`columns must contain the ENSEMBL gene_IDs.
2. The `gene_name` column must contain the name of the gene corresponding to ENSEMBL gene_ID.
Finally the `norm` parameter is an **optional** parameter that can be provided to use another normalization than the DESeq2 method. In most cases you won't need it. This parameter takes a 2 columns file with the following format:
```
sample size_factor
276_DMSO_DMSO_0 1
277_DMSO_DMSO_0 2
```
Note that the header must be provided.
- The `sample` column must corresponds to samples also defined in the *sample* column of the design file.
- The `size_factor` column correspond to a factor used to normalize sample in DESeq2. They will be used in the sizeFactors function of DESeq2.
## With the function run_deseq2
You can directly use the function run_deseq2 with R: