File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ jobs:
256
256
if : always()
257
257
steps :
258
258
- name : All tests ok
259
- if : ${{ !contains(needs.*.result, 'failure' ) }}
259
+ if : ${{ success( ) }}
260
260
run : exit 0
261
261
- name : One or more tests failed
262
262
if : ${{ contains(needs.*.result, 'failure') }}
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
35
35
- [ PR #1241 ] ( https://github.com/nf-core/rnaseq/pull/1241 ) - Add nf-test tests to deseq2_qc
36
36
- [ PR #1242 ] ( https://github.com/nf-core/rnaseq/pull/1242 ) - Use dupradar from nf-core/modules
37
37
- [ PR #1244 ] ( https://github.com/nf-core/rnaseq/pull/1244 ) - Add gtf2bed tests
38
+ - [ PR #1228 ] ( https://github.com/nf-core/rnaseq/pull/1228 ) - Change CI/CD testing logic to pass if no nf-tests have been ran
38
39
39
40
### Parameters
40
41
Original file line number Diff line number Diff line change @@ -80,9 +80,10 @@ Now, you can run the pipeline using:
80
80
81
81
``` bash
82
82
nextflow run nf-core/rnaseq \
83
- --input samplesheet.csv \
83
+ --input < SAMPLESHEET > \
84
84
--outdir < OUTDIR> \
85
- --genome GRCh37 \
85
+ --gtf < GTF> \
86
+ --fasta < GENOME FASTA> \
86
87
-profile < docker/singularity/.../institute>
87
88
```
88
89
Original file line number Diff line number Diff line change @@ -213,8 +213,6 @@ nextflow run \
213
213
--outdir < OUTDIR> \
214
214
--gtf < GTF> \
215
215
--fasta < GENOME FASTA> \
216
- --igenomes_ignore \
217
- --genome null \
218
216
-profile docker
219
217
```
220
218
You can’t perform that action at this time.
0 commit comments