From 6acdc226df57a789a119837a97545720081643a7 Mon Sep 17 00:00:00 2001 From: zigen Date: Sat, 8 Jan 2022 16:19:34 +0900 Subject: [PATCH] rename quisp_run -> crispr --- README.md | 18 +++++++++--------- pyproject.toml | 5 ++--- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 451729a..62c9482 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# QuISP Benchmark Runner +# CRISPR: QuISP Benchmark Runner ## Prerequisites * Poetry @@ -12,31 +12,31 @@ $ poetry install # (if you don't want to make your environment dirty) $ poetry shell -# install quisp command in editable mode +# install crispr command in editable mode $ pip install -e . -# then you can use the "quisp" command +# then you can use the "crispr" command # show help -$ quisp --help +$ crispr --help ``` ## Usage ```sh # validate your plan file -$ quisp plan ./simulation.plan +$ crispr plan ./simulation.plan # run all simulations -$ quisp run ./simulation.plan -r ../your-quisp-repository -o ../output-dir +$ crispr run ./simulation.plan -r ../your-quisp-repository -o ../output-dir # run simulations with 16 workers -$ quisp run ./simulation.plan -r ../your-quisp-repository -o ../output-dir -p 16 +$ crispr run ./simulation.plan -r ../your-quisp-repository -o ../output-dir -p 16 # and you can type Ctrl-C to stop the simulations # then you can resume the stopped simulation -$ quisp resume +$ crispr resume # you can check the stopped simulations status -$ quisp status +$ crispr status ``` ## Results Directory diff --git a/pyproject.toml b/pyproject.toml index ff1912f..306ed6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "quisp_run" +name = "crispr" version = "0.1.0" description = "" authors = ["zigen "] @@ -23,8 +23,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] -quisp_run = "quisp_run.main:main" -quisp = "quisp_run.main:main" +crispr = "quisp_run.main:main" [tool.poetry.build] generate-setup-file = false