File tree Expand file tree Collapse file tree 2 files changed +32
-23
lines changed Expand file tree Collapse file tree 2 files changed +32
-23
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131
3232### Parameters
3333
34- | Old parameter | New parameter |
35- | ---------------------- | ------------------ |
36- | ` --clusterOptions ` | |
37- | ` --conda ` | ` --enable_conda ` |
38- | | ` --skip_qc ` |
39- | | ` --aligner ` |
40- | | ` --save_unaligned ` |
41- | ` --skip_diff_analysis ` | ` --skip_deseq2_qc ` |
42- | | ` --read_length ` |
34+ | Old parameter | New parameter |
35+ | ---------------------- | ----------------------- |
36+ | ` --conda ` | ` --enable_conda ` |
37+ | ` --skip_diff_analysis ` | ` --skip_deseq2_qc ` |
38+ | | ` --skip_qc ` |
39+ | | ` --aligner ` |
40+ | | ` --save_unaligned ` |
41+ | | ` --read_length ` |
42+ | | ` --multiqc_title ` |
43+ | | ` --gff ` |
44+ | | ` --bowtie2_index ` |
45+ | | ` --chromap_index ` |
46+ | | ` --star_index ` |
47+ | | ` --validate_params ` |
48+ | | ` --show_hidden_params ` |
49+ | | ` --config_profile_name ` |
50+ | ` --clusterOptions ` | |
51+ | ` --single_end ` | |
52+ | ` --name ` | |
53+ | ` --hostnames ` | |
4354
4455> ** NB:** Parameter has been ** updated** if both old and new parameter information is present.
4556> ** NB:** Parameter has been ** added** if just the new parameter information is present.
Original file line number Diff line number Diff line change @@ -581,20 +581,6 @@ if (!params.skip_peak_annotation) {
581581 saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
582582 ]
583583 }
584-
585- withName: 'ANNOTATE_BOOLEAN_PEAKS' {
586- ext.prefix = { "${meta.id}_peaks" }
587- publishDir = [
588- path: { [
589- "${params.outdir}/${params.aligner}/mergedLibrary/macs2",
590- params.narrow_peak? '/narrowPeak' : '/broadPeak',
591- '/consensus'
592- ].join('') },
593- mode: params.publish_dir_mode,
594- saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
595- ]
596-
597- }
598584 }
599585
600586 if (!params.skip_peak_qc) {
@@ -673,6 +659,18 @@ if (!params.skip_consensus_peaks) {
673659 saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
674660 ]
675661 }
662+ withName: 'ANNOTATE_BOOLEAN_PEAKS' {
663+ ext.prefix = { "${meta.id}_peaks" }
664+ publishDir = [
665+ path: { [
666+ "${params.outdir}/${params.aligner}/mergedLibrary/macs2",
667+ params.narrow_peak? '/narrowPeak' : '/broadPeak',
668+ '/consensus'
669+ ].join('') },
670+ mode: params.publish_dir_mode,
671+ saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
672+ ]
673+ }
676674 }
677675 }
678676
You can’t perform that action at this time.
0 commit comments