Wytamma / snk

Snakemake workflow management system and CLI generation tool

Home Page:https://snk.wytamma.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

enum option type

Wytamma opened this issue · comments

Add an annotation type that allows you to set enums.

config.yaml

# Sequencing technology
# [illumina, ont, pgm]
technology: illumina

.snk

annotations:
  technology: 
    type: Enum[str]
    enums: [illumina, ont, pgm]