Skip to content

Commit

Permalink
Fix bug in adapter2 passing
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-cheshire committed Oct 21, 2023
1 parent 6715a22 commit 2f4e9ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/wrappers/subworkflows/demultiplex/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
- "wrappers/subworkflows/demultiplex"

- name: "test_wrappers_demultiplex_multi_pe"
command: nextflow run ./wrappers/subworkflows/demultiplex/main.nf -c ./tests/config/nextflow.config ---samplesheet ./tests/data/samplesheets/rna-samplesheet.csv --fastqs ./tests/data/fastq_list/multi_pe_fastq.csv
command: nextflow run ./wrappers/subworkflows/demultiplex/main.nf -c ./tests/config/nextflow.config ---samplesheet ./tests/data/samplesheets/clip-samplesheet.csv --fastqs ./tests/data/fastq_list/multi_pe_fastq.csv
tags:
- "wrappers"
- "wrappers/subworkflows"
Expand Down
2 changes: 1 addition & 1 deletion wrappers/subworkflows/demultiplex/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ workflow {

// Execute
DEMULTIPLEX ( ch_samplesheet, ch_fastqs )
DEMULTIPLEX.out.fastq | view
//DEMULTIPLEX.out.fastq | view
}
2 changes: 1 addition & 1 deletion wrappers/subworkflows/demultiplex/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ process {
ext.args = [
"-m5 ${params.fiveprimemismatches}",
"-m3 ${params.threeprimemismatches}",
"-a2 ${params.adapter2}",
params.adapter2 ? "-a2 ${params.adapter2}" : '',
"-q ${params.phredquality}",
"-q5 ${params.phred_quality_5_prime}",
"-mt ${params.min_trim}",
Expand Down

0 comments on commit 2f4e9ea

Please sign in to comment.