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

Improve input file import of fastqc process

parent 7b474afc
Branches
Tags
2 merge requests!8Develop,!6Resolve "Add MultiQC"
Pipeline #3463 passed with stages
in 2 minutes and 52 seconds
......@@ -15,8 +15,13 @@ process {
module = ['cellranger/3.0.2', 'bcl2fastq/2.19.1']
queue = '128GB,256GB,256GBv1,384GB'
}
withLabel: fastqc {
module = ['fastqc/0.11.5', 'parallel']
executor = 'local'
}
withLabel: multiqc {
module = ['multiqc/1.7']
executor = 'local'
}
}
......
......@@ -80,7 +80,8 @@ process mkfastq {
output:
file("**/outs/fastq_path/**/*") into fastqPaths
file("**/outs/fastq_path/**/*") into mkfastqPaths
file("**/outs/**/*.fastq.gz") into fastqPaths
file("**/outs/fastq_path/Stats/Stats.json") into bqcPaths
script:
......@@ -99,7 +100,7 @@ process fastqc {
publishDir "$outDir/${task.process}", mode: 'copy'
input:
file("outs/fastq_path/*/*") from fastqPaths
file fastqPaths
output:
......
#!/bin/bash
find . -name '*.fastq.gz' | awk '{printf("fastqc \"%s\"\n", $0)}' | parallel -j 25 --verbose
find . -name '*fastqc.*' | xargs -I '{}' mv '{}' ./
#find . -name '*fastqc.*' | xargs -I '{}' mv '{}' ./
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