Skip to content

Commit d984c09

Browse files
committed
Switch deseq2_vst to true by default
1 parent 3e1857d commit d984c09

File tree

3 files changed

+28
-7
lines changed

3 files changed

+28
-7
lines changed

docs/output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ The [featureCounts](http://bioinf.wehi.edu.au/featureCounts/) tool is used to co
261261

262262
**This pipeline uses a standardised DESeq2 analysis script to get an idea of the reproducibility within the experiment, and to assess the overall differential binding. Please note that this will not suit every experimental design, and if there are other problems with the experiment then it may not work as well as expected.**
263263

264-
For larger experiments, it may be recommended to use the `vst` transformation instead of the default `rlog` option. You can do this by providing the `--deseq2_vst` parameter to the pipeline. See [DESeq2 docs](http://bioconductor.org/packages/devel/bioc/vignettes/DESeq2/inst/doc/DESeq2.html#data-transformations-and-visualization) for a more detailed explanation.
264+
For larger experiments, it is recommended to use the `vst` transformation instead of the default `rlog` option. This is the default behaviour and can be controlled with the `--deseq2_vst` parameter. See [DESeq2 docs](http://bioconductor.org/packages/devel/bioc/vignettes/DESeq2/inst/doc/DESeq2.html#data-transformations-and-visualization) for a more detailed explanation.
265265

266266
![MultiQC - DESeq2 PCA plot](images/mqc_deseq2_pca_plot.png)
267267

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ params {
5050
skip_consensus_peaks = false
5151

5252
// Options: DESeq2 QC
53-
deseq2_vst = false
53+
deseq2_vst = true
5454
skip_deseq2_qc = false
5555

5656
// Options: QC

nextflow_schema.json

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"type": "object",
1111
"fa_icon": "fas fa-terminal",
1212
"description": "Define where the pipeline should find input data and save output data.",
13-
"required": ["outdir"],
13+
"required": [
14+
"outdir"
15+
],
1416
"properties": {
1517
"input": {
1618
"type": "string",
@@ -37,7 +39,13 @@
3739
"type": "integer",
3840
"description": "Read length used to calculate MACS2 genome size for peak calling if `--macs_gsize` isn't provided.",
3941
"fa_icon": "fas fa-chart-area",
40-
"enum": [50, 75, 100, 150, 200]
42+
"enum": [
43+
50,
44+
75,
45+
100,
46+
150,
47+
200
48+
]
4149
},
4250
"outdir": {
4351
"type": "string",
@@ -221,7 +229,12 @@
221229
"default": "bwa",
222230
"description": "Specifies the alignment algorithm to use - available options are 'bwa', 'bowtie2' and 'star'.",
223231
"fa_icon": "fas fa-map-signs",
224-
"enum": ["bwa", "bowtie2", "chromap", "star"]
232+
"enum": [
233+
"bwa",
234+
"bowtie2",
235+
"chromap",
236+
"star"
237+
]
225238
},
226239
"keep_dups": {
227240
"type": "boolean",
@@ -348,7 +361,8 @@
348361
"type": "boolean",
349362
"description": "Use vst transformation instead of rlog with DESeq2.",
350363
"help_text": "See [DESeq2 docs](http://bioconductor.org/packages/devel/bioc/vignettes/DESeq2/inst/doc/DESeq2.html#data-transformations-and-visualization).",
351-
"fa_icon": "fas fa-dolly"
364+
"fa_icon": "fas fa-dolly",
365+
"default": true
352366
},
353367
"skip_plot_profile": {
354368
"type": "boolean",
@@ -489,7 +503,14 @@
489503
"description": "Method used to save pipeline results to output directory.",
490504
"help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.",
491505
"fa_icon": "fas fa-copy",
492-
"enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"],
506+
"enum": [
507+
"symlink",
508+
"rellink",
509+
"link",
510+
"copy",
511+
"copyNoFollow",
512+
"move"
513+
],
493514
"hidden": true
494515
},
495516
"fingerprint_bins": {

0 commit comments

Comments
 (0)