Skip to content

Commit fd14e46

Browse files
committed
Make prettier happy
1 parent b652a5c commit fd14e46

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ jobs:
5959
runs-on: ubuntu-latest
6060
strategy:
6161
matrix:
62+
NXF_VER:
63+
- "24.04.2"
64+
- "latest-everything"
6265
parameters:
6366
- "--skip_trimming"
6467
- "--skip_consensus_peaks"
@@ -88,5 +91,5 @@ jobs:
8891

8992
- name: Run pipeline with various parameters (conda)
9093
run: |
91-
nextflow run ${GITHUB_WORKSPACE} -profile test,conda --outdir ./results ${{ matrix.parameters }}
94+
nextflow run ${GITHUB_WORKSPACE} -profile test,conda --outdir ./results ${{ matrix.parameters }}
9295
if: "${{ github.base_ref == 'master' }}"

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Parameters
1111

12-
| Old parameter | New parameter |
13-
| ------------- | -------------------------------- |
14-
| | |
12+
| Old parameter | New parameter |
13+
| ------------- | ------------- |
14+
| | |
1515

1616
> **NB:** Parameter has been **updated** if both old and new parameter information is present.
1717
> **NB:** Parameter has been **added** if just the new parameter information is present.

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ workflow {
112112
args,
113113
params.outdir
114114
)
115-
115+
116116
//
117117
// WORKFLOW: Run main workflow
118118
//

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,10 @@ validation {
304304
"""
305305
afterText = """${manifest.doi ? "* The pipeline\n" : ""}${manifest.doi.tokenize(",").collect { " https://doi.org/${it.trim().replace('https://doi.org/','')}"}.join("\n")}${manifest.doi ? "\n" : ""}
306306
* The nf-core framework
307-
https://doi.org/10.1038/s41587-020-0439-x
307+
https://doi.org/10.1038/s41587-020-0439-x
308308
309309
* Software dependencies
310-
https://github.com/${manifest.name}/blob/master/CITATIONS.md
310+
https://github.com/${manifest.name}/blob/master/CITATIONS.md
311311
"""
312312
}
313313
summary {

subworkflows/local/utils_nfcore_chipseq_pipeline/main.nf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ workflow PIPELINE_INITIALISATION {
4646
workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1
4747
)
4848

49-
5049
//
5150
// Validate parameters and generate parameter summary to stdout
5251
//
@@ -55,7 +54,7 @@ workflow PIPELINE_INITIALISATION {
5554
validate_params,
5655
null
5756
)
58-
57+
5958
//
6059
// Check config provided to the pipeline
6160
//
@@ -91,7 +90,6 @@ workflow PIPELINE_COMPLETION {
9190
email // string: email address
9291
email_on_fail // string: email address sent on pipeline failure
9392
plaintext_email // boolean: Send plain-text email instead of HTML
94-
9593
outdir // path: Path to output directory where results will be published
9694
monochrome_logs // boolean: Disable ANSI colour codes in log output
9795
hook_url // string: hook URL for notifications

0 commit comments

Comments
 (0)