Skip to content

Commit

Permalink
Excluding undetermined indices from search pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
marchoeppner committed Nov 27, 2023
1 parent 6d96083 commit 55857ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ log.info "Target folder: ${params.folder}"

// Get list of all project folders

reads = Channel.fromPath("${demux_folder}/[A-Z][A-Za-z]*_*[0-9]/*_R*_001.fastq.gz")
reads = Channel.fromPath("${demux_folder}/[A-Z][A-Za-z]*_*/*_R*_001.fastq.gz").filter { !it.toString().contains("Undetermined") }
//diagx_reads = Channel.fromPath("${demux_folder}/NGS_Diagnostik-Exome/*_001.fastq.gz")


Expand Down
2 changes: 1 addition & 1 deletion modules/fastp.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process FASTP {
tuple val(project),val(lib),path(reads)

output:
tuple val(project),val(lib),path(ltrim),path(rtrim), emit: reads
tuple val(project),val(lib),path(ltrim),path(rtrim), optional: true, emit: reads
path(json), emit: json

script:
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ params {
}

manifest {
version = "1.7.2"
version = "1.7.3"
description = "NGS QC Pipeline"
author = "Marc P. Hoeppner"
homePage = "https://github.com/ikmb/ngs-qc"
Expand Down

0 comments on commit 55857ab

Please sign in to comment.