Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 963 Bytes

File metadata and controls

54 lines (39 loc) · 963 Bytes

title: "primerlab init" description: "CLI reference for the primerlab init command"

Generate a template configuration file.

Synopsis

primerlab init [options]

Options

Option Short Description
--workflow -w Workflow type: pcr, qpcr (default: pcr)
--output -o Output filename (default: config.yaml)

Examples

Generate PCR Config

primerlab init
# Creates config.yaml

Generate qPCR Config

primerlab init --workflow qpcr --output my_qpcr.yaml

Generated Config

The generated config includes all available options with comments:

workflow: pcr

input:
  sequence: "YOUR_SEQUENCE_HERE"
  # Or use: sequence_path: "input.fasta"

parameters:
  primer_size: {min: 18, opt: 20, max: 24}
  tm: {min: 58.0, opt: 60.0, max: 62.0}
  product_size_range: [[200, 600]]
  gc: {min: 40, max: 60}

output:
  directory: "output_pcr"