Skip to content

Commit

Permalink
replaced published_contigs variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Ge94 committed Dec 6, 2024
1 parent 9bbed3e commit e831147
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion subworkflows/local/assembly_qc.nf
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ workflow ASSEMBLY_QC {
)

emit:
filtered_contigs = cleaned_contigs
cleaned_contigs = cleaned_contigs
versions = ch_versions
}
4 changes: 2 additions & 2 deletions workflows/miassembler.nf
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ workflow MIASSEMBLER {

// Coverage //
ASSEMBLY_COVERAGE(
ASSEMBLY_QC.out.filtered_contigs.join( READS_QC.out.qc_reads, remainder: false ),
ASSEMBLY_QC.out.cleaned_contigs.join( READS_QC.out.qc_reads, remainder: false ),
READS_QC.out.fastp_json
)

Expand All @@ -255,7 +255,7 @@ workflow MIASSEMBLER {
// Stats //
/* The QUAST module was modified to run metaQUAST instead */
QUAST(
ASSEMBLY_QC.out.filtered_contigs,
ASSEMBLY_QC.out.cleaned_contigs,
[ [], [] ], // reference
[ [], [] ] // gff
)
Expand Down

0 comments on commit e831147

Please sign in to comment.