mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-13 07:43:08 +00:00
Fix file header descriptions
This commit is contained in:
parent
dfcf8f7b1a
commit
b5f5c75504
2 changed files with 9 additions and 10 deletions
|
@ -1,6 +1,9 @@
|
|||
/*
|
||||
Process long raw reads with porechop
|
||||
*/
|
||||
|
||||
include { FASTQC as FASTQC_POST } from '../../modules/nf-core/modules/fastqc/main'
|
||||
include { PORECHOP } from '../../modules/nf-core/modules/porechop/main'
|
||||
include { FASTQC as FASTQC_PROCESSED } from '../../modules/nf-core/modules/fastqc/main'
|
||||
include { PORECHOP } from '../../modules/nf-core/modules/porechop/main'
|
||||
|
||||
workflow LONGREAD_PREPROCESSING {
|
||||
take:
|
||||
|
@ -23,7 +26,7 @@ workflow LONGREAD_PREPROCESSING {
|
|||
|
||||
FASTQC_POST ( PORECHOP.out.reads )
|
||||
ch_versions = ch_versions.mix(PORECHOP.out.versions.first())
|
||||
ch_multiqc_files = ch_multiqc_files.mix( FASTQC_POST.out.zip.collect{it[1]} )
|
||||
ch_multiqc_files = ch_multiqc_files.mix( FASTQC_PROCESSED.out.zip.collect{it[1]} )
|
||||
|
||||
|
||||
emit:
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
//
|
||||
// Check input samplesheet and get read channels
|
||||
//
|
||||
|
||||
/*
|
||||
Process short raw reads with FastP
|
||||
*/
|
||||
|
||||
include { FASTP as FASTP_SINGLE } from '../../modules/nf-core/modules/fastp/main'
|
||||
include { FASTP as FASTP_PAIRED } from '../../modules/nf-core/modules/fastp/main'
|
||||
|
@ -17,9 +16,6 @@ workflow SHORTREAD_FASTP {
|
|||
//
|
||||
// STEP: Read clipping and merging
|
||||
//
|
||||
// TODO give option to retain singletons (probably fastp option likely)
|
||||
// TODO move to subworkflow
|
||||
|
||||
ch_input_for_fastp = reads
|
||||
.dump(tag: "pre-fastp_branch")
|
||||
.branch{
|
||||
|
|
Loading…
Reference in a new issue