Skip to content
Snippets Groups Projects
Unverified Commit d0a65940 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

bwa: fix warining in tests

parent f720ba52
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ profiles { ...@@ -12,7 +12,7 @@ profiles {
singularity { singularity {
singularity.enabled = true singularity.enabled = true
process { process {
withName: trimming { withName: fasta_from_bed {
container = "file://bin/bedtools:2.25.0.sif" container = "file://bin/bedtools:2.25.0.sif"
cpus = 1 cpus = 1
} }
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
./nextflow src/nf_modules/bwa/mapping_paired.nf \ ./nextflow src/nf_modules/bwa/mapping_paired.nf \
-c src/nf_modules/bwa/mapping_paired.config \ -c src/nf_modules/bwa/mapping_paired.config \
-profile docker \ -profile docker \
--index "results/mapping/index/tiny_v2*" \ --index "results/mapping/index/tiny_v2.*" \
--fastq "data/tiny_dataset/fastq/tiny*_R{1,2}.fastq" \ --fastq "data/tiny_dataset/fastq/tiny*_R{1,2}.fastq" \
-resume -resume
...@@ -35,7 +35,7 @@ if [ -x "$(command -v singularity)" ]; then ...@@ -35,7 +35,7 @@ if [ -x "$(command -v singularity)" ]; then
./nextflow src/nf_modules/bwa/mapping_paired.nf \ ./nextflow src/nf_modules/bwa/mapping_paired.nf \
-c src/nf_modules/bwa/mapping_paired.config \ -c src/nf_modules/bwa/mapping_paired.config \
-profile singularity \ -profile singularity \
--index "results/mapping/index/tiny_v2*" \ --index "results/mapping/index/tiny_v2.*" \
--fastq "data/tiny_dataset/fastq/tiny*_R{1,2}.fastq" \ --fastq "data/tiny_dataset/fastq/tiny*_R{1,2}.fastq" \
-resume -resume
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment