Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ workflow FASTQ_QC_TRIM_FILTER_SETSTRANDEDNESS {
stranded_threshold // float: The fraction of stranded reads that must be assigned to a strandedness for confident assignment. Must be at least 0.5
unstranded_threshold // float: The difference in fraction of stranded reads assigned to 'forward' and 'reverse' below which a sample is classified as 'unstranded'
skip_linting // boolean: true/false
fastp_merge // boolean: true/false: whether to stitch paired end reads together in FASTP output

main:

Expand Down Expand Up @@ -191,7 +192,7 @@ workflow FASTQ_QC_TRIM_FILTER_SETSTRANDEDNESS {
skip_trimming,
[],
save_trimmed,
save_trimmed,
fastp_merge,
min_trimmed_reads
)
ch_filtered_reads = FASTQ_FASTQC_UMITOOLS_FASTP.out.reads
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ input:
- skip_linting:
type: boolean
description: Whether to skip linting of FastQ files
- fastp_merge:
type: boolean
description: |
For FASTP, save merged fastqs stitching together read1 and read2 for paired end reads

output:
- reads:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ nextflow_workflow {
input[20] = 0.8 // stranded_threshold
input[21] = 0.1 // unstranded_threshold
input[22] = false // skip_linting
input[23] = true // fastp_merge
"""
}
}
Expand Down Expand Up @@ -121,6 +122,7 @@ nextflow_workflow {
input[20] = 0.8 // stranded_threshold
input[21] = 0.1 // unstranded_threshold
input[22] = false // skip_linting
input[23] = true // fastp_merge
"""
}
}
Expand Down
Loading