mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 02:58:17 +00:00
test(fastqc): restructure under software/fastqc
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
b96f2d6a5e
commit
83539fcdf2
2 changed files with 4 additions and 4 deletions
|
@ -2,8 +2,8 @@
|
|||
|
||||
nextflow.enable.dsl = 2
|
||||
|
||||
include { FASTQC as FASTQC_SE } from '../../software/fastqc/main.nf' addParams( options: [ publish_dir:'test_single_end' ] )
|
||||
include { FASTQC as FASTQC_PE } from '../../software/fastqc/main.nf' addParams( options: [ publish_dir:'test_paired_end' ] )
|
||||
include { FASTQC as FASTQC_SE } from '../../../software/fastqc/main.nf' addParams( options: [ publish_dir:'test_single_end' ] )
|
||||
include { FASTQC as FASTQC_PE } from '../../../software/fastqc/main.nf' addParams( options: [ publish_dir:'test_paired_end' ] )
|
||||
|
||||
/*
|
||||
* Test with single-end data
|
|
@ -1,5 +1,5 @@
|
|||
- name: Run fastqc single-end test workflow
|
||||
command: nextflow run ./tests/fastqc/ -profile docker -entry test_single_end -c tests/config/nextflow.config
|
||||
command: nextflow run ./tests/software/fastqc/ -profile docker -entry test_single_end -c tests/config/nextflow.config
|
||||
tags:
|
||||
- fastqc
|
||||
files:
|
||||
|
@ -8,7 +8,7 @@
|
|||
- path: output/test_single_end/test_fastqc.zip
|
||||
|
||||
- name: Run fastqc paired-end test workflow
|
||||
command: nextflow run ./tests/fastqc/ -profile docker -entry test_paired_end -c tests/config/nextflow.config
|
||||
command: nextflow run ./tests/software/fastqc/ -profile docker -entry test_paired_end -c tests/config/nextflow.config
|
||||
tags:
|
||||
- fastqc
|
||||
files:
|
Loading…
Reference in a new issue