Skip to content

Commit 95dee3a

Browse files
committed
Remove remnant params from main.nf
1 parent 1f4a02e commit 95dee3a

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

main.nf

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ workflow NFPROTEINDESIGN {
5555
def version_text = "nf-proteindesign v1.0.0"
5656
def mode_line = "Mode: DESIGN"
5757
def desc_line = "Using design YAML files"
58-
def params_header = "Design Parameters:"
59-
def num_designs_line = "• num_designs: ${params.num_designs}"
60-
def budget_line = "• budget: ${params.budget}"
6158
def modules_header = "Analysis Modules:"
6259
def output_line = "Output: ${params.outdir}"
6360

@@ -75,10 +72,6 @@ workflow NFPROTEINDESIGN {
7572
║ 🎯 ${mode_line.padRight(banner_width - 6)}
7673
${desc_line.padRight(banner_width - 5)}
7774
╠════════════════════════════════════════════════════════════════╣
78-
║ ⚙️ ${params_header.padRight(banner_width - 7)}
79-
${num_designs_line.padRight(banner_width - 6)}
80-
${budget_line.padRight(banner_width - 6)}
81-
╠════════════════════════════════════════════════════════════════╣
8275
║ 🔬 ${modules_header.padRight(banner_width - 6)}
8376
${modules_str.padRight(banner_width - 5)}
8477
╠════════════════════════════════════════════════════════════════╣
@@ -200,9 +193,9 @@ workflow NFPROTEINDESIGN {
200193

201194
def meta = [:]
202195
meta.id = sample_id
203-
meta.protocol = protocol ?: params.protocol
204-
meta.num_designs = num_designs ?: params.num_designs
205-
meta.budget = budget ?: params.budget
196+
meta.protocol = protocol
197+
meta.num_designs = num_designs
198+
meta.budget = budget
206199
meta.reuse = reuse ?: false
207200

208201
[meta, design_yaml, structure_files, target_msa, target_sequence, target_template]

0 commit comments

Comments
 (0)