Skip to content
Snippets Groups Projects
Commit 4ca7cd19 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Fix outdir for fastqc ci and process

parent 2735b0c4
Branches
Tags
2 merge requests!37v0.0.1,!18Resolve "process_fastqc"
Pipeline #5881 passed with stages
in 47 minutes and 43 seconds
......@@ -70,7 +70,7 @@ dedupData:
fastqc:
stage: unit
script:
- singularity run 'docker://bicf/fastqc:2.0.0' ./test_data/fastq/small/Q-Y5JA_1M.R1.fastq.gz .
- singularity run 'docker://bicf/fastqc:2.0.0' ./test_data/fastq/small/Q-Y5JA_1M.R1.fastq.gz -o .
- pytest -m fastqc
integration_se:
......
......@@ -354,6 +354,6 @@ process fastqc {
ulimit -a >>${repRID}.fastqc.err
# run fastqc
fastqc *.fastq.gz >>${repRID}.fastqc.err
fastqc *.fastq.gz -o . >>${repRID}.fastqc.err
"""
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment