Ejemplo n.º 1
0
def main():
    """Console script for {{cookiecutter.project_slug}}."""
    app = SnakeBidsApp(os.path.abspath(os.path.dirname(__file__)))
    app.run_snakemake()
    return 0
Ejemplo n.º 2
0
def main():
    """Console script for snakebids2dicom."""
    app = SnakeBidsApp(os.path.abspath(os.path.dirname(__file__)))
    app.run_snakemake()
    return 0
Ejemplo n.º 3
0
def main():

    app = SnakeBidsApp(os.path.abspath(os.path.dirname(__file__)))
    app.run_snakemake()
Ejemplo n.º 4
0
def main():
    app = SnakeBidsApp(
        os.path.abspath(os.path.dirname(__file__)),
        configfile_path="config/snakebids.yml",
    )
    app.run_snakemake()
Ejemplo n.º 5
0
def main():
    app = SnakeBidsApp(
        Path(__file__).resolve().parents[1])  # to get repository root
    app.run_snakemake()