Skip to content

Commit

Permalink
feat: flag for busco
Browse files Browse the repository at this point in the history
  • Loading branch information
slsevilla committed Mar 28, 2024
1 parent 0129b41 commit 320cb64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ params {
busco_db_path = null
coverage = 30 // can only increase above 30

// Run flags
run_busco = false


// Additional input parameters for -entry SCAFFOLDS and CDC_SCAFFOLDS
indir = null
scaffolds_ext = '.scaffolds.fa.gz'
Expand Down
2 changes: 1 addition & 1 deletion workflows/phoenix.nf
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ workflow PHOENIX_EXTERNAL {

//fairy compressed file corruption check & generate read stats
CORRUPTION_CHECK (
INPUT_CHECK.out.reads, false // true says busco is being run in this workflow
INPUT_CHECK.out.reads, params.run_busco
)
ch_versions = ch_versions.mix(CORRUPTION_CHECK.out.versions)

Expand Down

0 comments on commit 320cb64

Please sign in to comment.