view env/lib/python3.9/site-packages/planemo/commands/cmd_mulled_init.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
line wrap: on
line source

"""Module describing the planemo ``conda_init`` command."""
import click

from planemo import options
from planemo.cli import command_function
from planemo.mulled import build_involucro_context


@click.command('mulled_init')
@options.mulled_options()
@command_function
def cli(ctx, **kwds):
    """Download and install involucro for mull command.

    This will happen automatically when using the mull command, but this can
    be pre-installed in an environment using this command.
    """
    build_involucro_context(ctx, **kwds)