Skip to content

Commit

Permalink
renamed param
Browse files Browse the repository at this point in the history
  • Loading branch information
MarieLataretu committed Jun 17, 2022
1 parent 589147d commit 6f0dc2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ params {
lcs_cutoff = 0.03
defaultpangolin = 'nanozoo/pangolin-v4:4.0.4--1.2.133'
defaultnextclade = 'nanozoo/nextclade:1.11.0--2022-03-31'
pangolin_skip_scorpio = true
scorpio = false

// parameters
primerV = 'V3'
Expand Down
4 changes: 2 additions & 2 deletions poreCov.nf
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,9 @@ ${c_yellow}Workflow control (optional)${c_reset}
to skip basecalling use --fastq or --fastq_pass and provide a sequencing_summary.txt in addition to --fast5
e.g --nanopolish sequencing_summary.txt
--screen_reads Determines the Pangolineage of each individual read (takes time)
--pangolin_skip_scorpio Skip Scorpio in pangolin run [default: $params.pangolin_skip_scorpio]
--scorpio Skip Scorpio in pangolin run [default: $params.scorpio]
${c_dim}From pangolin version 4, Scorpio overwrites Usher results which leads to many unassigned samples
Can be turned of with --pangolin_skip_scorpio false${c_reset}
Can be turned on with --scorpio${c_reset}
${c_yellow}Parameters - Lineage detection on reads (see screen_reads, optional)${c_reset}
--lcs_ucsc_version Create marker table based on a specific UCSC SARS-CoV-2 tree (e.g. '2022-05-01'). Use 'predefined'
Expand Down
2 changes: 1 addition & 1 deletion workflows/process/pangolin.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ process pangolin {
output:
tuple val(name), path("lineage_report_${name}.csv") optional true
script:
def args = params.pangolin_skip_scorpio ? '--skip-scorpio' : ''
def args = params.scorpio ? '' : '--skip-scorpio'
"""
pangolin ${args} -t ${task.cpus} ${fasta}
Expand Down

0 comments on commit 6f0dc2d

Please sign in to comment.