Skip to content
Snippets Groups Projects
Select Git revision
  • 2462bf79a6f76ad37c7cadc197f606414ec19df0
  • master default protected
2 results

graphlan_annotate.rules

Blame
  • graphlan_annotate.rules 580 B
    __graphlan_annotate_exec_command = config['graphlan_annotate'].get('exec_command', 'graphlan_annotate.py')
    __graphlan_annotate_options = config['graphlan_annotate'].get('options', "")
    
    rule graphlan_annotate:
        input:
            tree = __graphlan_annotate_input_tree
            annot = __graphlan_annotate_input_annot
        output:
            __graphlan_annotate_output
        params:
            exec_command = __graphlan_annotate_exec_command,
            options = __graphlan_annotate_options
        shell:
            "{params.exec_command} {params.options} --annot {input.annot} {input.tree} {output}"