Skip to content

Commit

Permalink
typo in varaiable declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
ens-ftricomi committed Apr 12, 2024
1 parent b1d11e0 commit bcc7819
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pipelines/nextflow/modules/busco/busco_output.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,13 @@ limitations under the License.
//include { make_publish_dir } from '../utils.nf'

process BUSCO_OUTPUT {
// rename busco summary file in <production name>_gca_busco_short_summary.txt
tag "busco_output:$db.gca"
label 'default'
publishDir { publish_dir/'statistics' }, mode: 'copy'
tag "busco_output"
publishDir "$publish_dir/statistics", mode: 'copy'

input:
tuple val(db), path(summary_file, stageAs: "short_summary_from_busco_run.txt"), val(datatype)
def publish_dir = db ? db.publish_dir? : params.outDir/db.gca
tuple val(db), path(summary_file), val(datatype)
def publish_dir = db ? db.publish_dir : $params.outDir+"/"+db.gca


output:
Expand Down

0 comments on commit bcc7819

Please sign in to comment.