Skip to content

Commit

Permalink
fix lint + modify CI actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gagnonanthony committed Dec 20, 2024
1 parent cd6db67 commit 97d7fbe
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ jobs:
- name: Check out pipeline code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4

- name: Clean up Disk space
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
with:
tool-cache: true

- name: Set up Nextflow
uses: nf-core/setup-nextflow@v2
with:
Expand All @@ -73,11 +78,6 @@ jobs:
mkdir -p $NXF_SINGULARITY_CACHEDIR
mkdir -p $NXF_SINGULARITY_LIBRARYDIR
- name: Clean up Disk space
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
with:
tool-cache: true

- name: "Run pipeline with test data ${{ matrix.NXF_VER }} | ${{ matrix.test_name }} | ${{ matrix.profile }}"
run: |
nf-test test ${GITHUB_WORKSPACE}/tests/${{ matrix.test_name }} --profile ${{ matrix.profile }}
5 changes: 3 additions & 2 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ lint:
- .github/ISSUE_TEMPLATE/config.yml
- .github/workflows/awstest.yml
- .github/workflows/awsfulltest.yml
actions_ci:
- .github/workflows/ci.yml
actions_ci: False
files_unchanged:
- CODE_OF_CONDUCT.md
- .github/workflows/linting.yml
- .github/workflows/branch.yml
- .github/workflows/linting_comment.yml
- assets/nf-core-pediatric_logo_light.png
- docs/images/nf-core-pediatric_logo_light.png
- docs/images/nf-core-pediatric_logo_dark.png
Expand Down
14 changes: 7 additions & 7 deletions assets/multiqc_config_subject.yml → assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ report_comment: >
report_section_order:
"nf-pediatric-summary":
order: -600
order: -1001
"shell_qc":
order: -650
order: -850
"tissue_segmentation_qc":
order: -700
order: -600
"metrics_qc":
order: -725
order: -625
"tracking_qc":
order: -750
order: -650
"labels_qc":
order: -800
order: -500
"nf-pediatric-methods-description":
order: -900
software_versions:
order: -500
order: -1000

custom_content:
order:
Expand Down
2 changes: 1 addition & 1 deletion workflows/pediatric.nf
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ workflow PEDIATRIC {
// MODULE: MultiQC
//
ch_multiqc_config_subject = Channel.fromPath(
"$projectDir/assets/multiqc_config_subject.yml", checkIfExists: true)
"$projectDir/assets/multiqc_config.yml", checkIfExists: true)
ch_multiqc_config_global = Channel.fromPath(
"$projectDir/assets/multiqc_config_global.yml", checkIfExists: true)
ch_multiqc_custom_config = params.multiqc_config ?
Expand Down

0 comments on commit 97d7fbe

Please sign in to comment.