Skip to content

Commit 7f0bbb0

Browse files
authored
Merge pull request #238 from Clinical-Genomics/feat/rename-cli-to-microsalt
Rename CLI entry point from microSALT to microsalt
2 parents e54f71a + b574926 commit 7f0bbb0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ export MICROSALT_CONFIG=/MY/FAV/FOLDER/config.json
4949

5050
## Usage
5151

52-
- `microSALT analyse` contains functions to start sbatch job(s) & produce
52+
- `microsalt analyse` contains functions to start sbatch job(s) & produce
5353
output to `folders['results']`. Afterwards the parsed results are uploaded
5454
to the SQL back-end and produce reports (HTML), which are then automatically
5555
e-mailed to the user.
56-
- `microSALT utils` contains various functionality, including generating the
56+
- `microsalt utils` contains various functionality, including generating the
5757
sample description json, manually adding new reference organisms and
5858
re-generating reports.
5959

microSALT/utils/job_creator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ def finish_job(self, joblist, single_sample=False):
684684
mb.write(f"export MICROSALT_CONFIG={os.environ['MICROSALT_CONFIG']}\n")
685685
conda_cmd = (
686686
f"conda run -p {os.environ['CONDA_PREFIX']} "
687-
f"microSALT utils finish {self.finishdir}/sampleinfo.json "
687+
f"microsalt utils finish {self.finishdir}/sampleinfo.json "
688688
f"--input {self.finishdir} "
689689
f"--email {self.regex.mail_recipient} "
690690
f"--report {report} "

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies = [
2525
]
2626

2727
[project.scripts]
28-
microSALT = "microSALT.cli:root"
28+
microsalt = "microSALT.cli:root"
2929

3030
[project.urls]
3131
Homepage = "https://github.com/Clinical-Genomics/microSALT"

0 commit comments

Comments
 (0)