Skip to content

Commit e6d6efe

Browse files
authored
Merge pull request #1228 from nf-core/readme_usage
Make README usage consistent with docs/usage.md
2 parents 37588d2 + fec6d8c commit e6d6efe

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ jobs:
256256
if: always()
257257
steps:
258258
- name: All tests ok
259-
if: ${{ !contains(needs.*.result, 'failure') }}
259+
if: ${{ success() }}
260260
run: exit 0
261261
- name: One or more tests failed
262262
if: ${{ contains(needs.*.result, 'failure') }}

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535
- [PR #1241](https://github.com/nf-core/rnaseq/pull/1241) - Add nf-test tests to deseq2_qc
3636
- [PR #1242](https://github.com/nf-core/rnaseq/pull/1242) - Use dupradar from nf-core/modules
3737
- [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
3839

3940
### Parameters
4041

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,10 @@ Now, you can run the pipeline using:
8080

8181
```bash
8282
nextflow run nf-core/rnaseq \
83-
--input samplesheet.csv \
83+
--input <SAMPLESHEET> \
8484
--outdir <OUTDIR> \
85-
--genome GRCh37 \
85+
--gtf <GTF> \
86+
--fasta <GENOME FASTA> \
8687
-profile <docker/singularity/.../institute>
8788
```
8889

docs/usage.md

-2
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,6 @@ nextflow run \
213213
--outdir <OUTDIR> \
214214
--gtf <GTF> \
215215
--fasta <GENOME FASTA> \
216-
--igenomes_ignore \
217-
--genome null \
218216
-profile docker
219217
```
220218

0 commit comments

Comments
 (0)