mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 19:18:17 +00:00
835ac48565
* fix multiqc process * fix multiqc tests * move multiqc test input data into tests/data/fastqc/ folder Move input tests data into tests/data/fastqc/ and linking those files into software/multiqc/test/input/ as stated from the project documentation * add multiqc github workflow * remove unused file * generalize multiqc input data User must collect all desidered files in a channel (as described in https://seqera.io/training/#_multiqc_report * update meta information
30 lines
594 B
YAML
30 lines
594 B
YAML
name: multiqc
|
|
on:
|
|
push:
|
|
paths:
|
|
- software/multiqc/**
|
|
- .github/workflows/multiqc.yml
|
|
- tests
|
|
pull_request:
|
|
paths:
|
|
- software/multiqc/**
|
|
- .github/workflows/multiqc.yml
|
|
- tests
|
|
|
|
jobs:
|
|
ci_test:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
NXF_ANSI_LOG: false
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Nextflow
|
|
run: |
|
|
export NXF_VER="20.07.1"
|
|
wget -qO- get.nextflow.io | bash
|
|
sudo mv nextflow /usr/local/bin/
|
|
|
|
# Test the module
|
|
- run: nextflow run ./software/multiqc/test/ -profile docker
|