Skip to content
Draft
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
6 changes: 2 additions & 4 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ lint:
- .github/PULL_REQUEST_TEMPLATE.md
- .github/workflows/branch.yml
- .github/workflows/linting.yml
nextflow_config:
- config_defaults:
- params.phix_reference
- params.lambda_reference
nextflow_config: false # TODO: Remove when tools supports parameter types
schema_params: false # TODO: Remove when tools supports parameter types
files_exist:
- .github/workflows/linting_comment.yml
nf_core_version: 4.0.3
Expand Down
858 changes: 428 additions & 430 deletions conf/igenomes.config

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -904,11 +904,13 @@ process {
withName: METABAT2_METABAT2 {
tag = { "${meta.assembler}-${meta.id}" }
ext.prefix = { "${meta.assembler}-MetaBAT2-${meta.id}" }
ext.args = [
params.min_contig_size < 1500 ? "-m 1500" : "-m ${params.min_contig_size}",
"--unbinned",
"--seed ${params.metabat_rng_seed}",
].join(' ').trim()
ext.args = {
[
params.min_contig_size < 1500 ? "-m 1500" : "-m ${params.min_contig_size}",
"--unbinned",
"--seed ${params.metabat_rng_seed}",
].join(' ').trim()
}
publishDir = [
[
path: { "${params.outdir}/GenomeBinning/MetaBAT2/bins/" },
Expand Down
Loading
Loading