Skip to content

Commit

Permalink
fix execute parse logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ggabernet committed Apr 11, 2024
1 parent e29cfda commit 6554b2e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion subworkflows/local/repertoire_analysis_reporting.nf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ workflow REPERTOIRE_ANALYSIS_REPORTING {
main:
ch_versions = Channel.empty()

if (params.mode == "fastq" && !params.library_generation_method in ["sc_10x_genomics"]) {
if (params.mode == "fastq" && params.library_generation_method != "sc_10x_genomics") {
PARSE_LOGS(
ch_presto_filterseq_logs,
ch_presto_maskprimers_logs,
Expand Down
18 changes: 9 additions & 9 deletions workflows/airrflow.nf
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ workflow AIRRFLOW {
ch_fastp_json = SEQUENCE_ASSEMBLY.out.fastp_reads_json
ch_fastqc_postassembly_mqc = SEQUENCE_ASSEMBLY.out.fastqc_postassembly
ch_validated_samplesheet = SEQUENCE_ASSEMBLY.out.samplesheet.collect()
ch_presto_filterseq_logs = SEQUENCE_ASSEMBLY.out.presto_filterseq_logs
ch_presto_maskprimers_logs = SEQUENCE_ASSEMBLY.out.presto_maskprimers_logs
ch_presto_pairseq_logs = SEQUENCE_ASSEMBLY.out.presto_pairseq_logs
ch_presto_clustersets_logs = SEQUENCE_ASSEMBLY.out.presto_clustersets_logs
ch_presto_buildconsensus_logs = SEQUENCE_ASSEMBLY.out.presto_buildconsensus_logs
ch_presto_postconsensus_pairseq_logs = SEQUENCE_ASSEMBLY.out.presto_postconsensus_pairseq_logs
ch_presto_assemblepairs_logs = SEQUENCE_ASSEMBLY.out.presto_assemblepairs_logs
ch_presto_collapseseq_logs = SEQUENCE_ASSEMBLY.out.presto_collapseseq_logs
ch_presto_splitseq_logs = SEQUENCE_ASSEMBLY.out.presto_splitseq_logs
ch_presto_filterseq_logs = SEQUENCE_ASSEMBLY.out.presto_filterseq_logs.ifEmpty([])
ch_presto_maskprimers_logs = SEQUENCE_ASSEMBLY.out.presto_maskprimers_logs.ifEmpty([])
ch_presto_pairseq_logs = SEQUENCE_ASSEMBLY.out.presto_pairseq_logs.ifEmpty([])
ch_presto_clustersets_logs = SEQUENCE_ASSEMBLY.out.presto_clustersets_logs.ifEmpty([])
ch_presto_buildconsensus_logs = SEQUENCE_ASSEMBLY.out.presto_buildconsensus_logs.ifEmpty([])
ch_presto_postconsensus_pairseq_logs = SEQUENCE_ASSEMBLY.out.presto_postconsensus_pairseq_logs.ifEmpty([])
ch_presto_assemblepairs_logs = SEQUENCE_ASSEMBLY.out.presto_assemblepairs_logs.ifEmpty([])
ch_presto_collapseseq_logs = SEQUENCE_ASSEMBLY.out.presto_collapseseq_logs.ifEmpty([])
ch_presto_splitseq_logs = SEQUENCE_ASSEMBLY.out.presto_splitseq_logs.ifEmpty([])
}

} else if ( params.mode == "assembled" ) {
Expand Down

0 comments on commit 6554b2e

Please sign in to comment.