rule echo_runtime:
    output:
        "output.txt"
    resources:
        runtime=120
    shell:
        """
        echo "Runtime resource: {resources.runtime}" > {output}
        """
