Skip to content

Commit

Permalink
temp disable coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
prototaxites committed May 2, 2024
1 parent 4939623 commit 4eba02e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions subworkflows/coverage.nf
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,11 @@ workflow COVERAGE {
go_list
)

GENES_TO_GOS.out.gosummary
ch_gosummaries = GENES_TO_GOS.out.gosummary
| map { meta, gosummary ->
[ gosummary ]
}
| collect
| set { ch_gosummaries }

SUMMARISE_GOS(
ch_gosummaries,
Expand Down
16 changes: 8 additions & 8 deletions workflows/mgannotate.nf
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ workflow MGANNOTATE {
ch_versions = ch_versions.mix(ANNOTATION.out.versions)

if(params.enable_coverage && params.go_list) {
COVERAGE(
INPUT_CHECK.out.reads,
ANNOTATION.out.contigs,
ANNOTATION.out.annotations,
ANNOTATION.out.gff,
DATABASES.out.go_list
)
ch_versions = ch_versions.mix(COVERAGE.out.versions)
// COVERAGE(
// INPUT_CHECK.out.reads,
// ANNOTATION.out.contigs,
// ANNOTATION.out.annotations,
// ANNOTATION.out.gff,
// DATABASES.out.go_list
// )
// ch_versions = ch_versions.mix(COVERAGE.out.versions)
}
}
}
Expand Down

0 comments on commit 4eba02e

Please sign in to comment.