Skip to content

Commit

Permalink
fix: qos express (#887)
Browse files Browse the repository at this point in the history
* add new QoS tag to `express` balsamic cli
  • Loading branch information
ashwini06 authored Apr 4, 2022
1 parent 385740c commit 9578e97
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black_linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
- uses: psf/black@stable
with:
options: "--check --verbose"
version: "21.7b0"
version: "22.3.0"
2 changes: 1 addition & 1 deletion BALSAMIC/commands/init/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
)
@click.option(
"--qos",
type=click.Choice(["low", "normal", "high"]),
type=click.Choice(["low", "normal", "high", "express"]),
show_default=True,
default="low",
help="QOS for sbatch jobs. Passed to " + get_schedulerpy(),
Expand Down
2 changes: 1 addition & 1 deletion BALSAMIC/commands/run/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
)
@click.option(
"--qos",
type=click.Choice(["low", "normal", "high"]),
type=click.Choice(["low", "normal", "high", "express"]),
show_default=True,
default="low",
help="QOS for sbatch jobs. Passed to " + get_schedulerpy(),
Expand Down
17 changes: 16 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
[8.2.9]
[X.X.X]
-------


Added:
^^^^^^
* Added slurm qos tag `express` #885
* Included more text about UMI-workflow variant calling settings to the readthedocs #888


Fixes:
^^^^^^
* Automate balsamic version for readthedocs install page #888

Changed:
^^^^^^^^
Upgrade black to 22.3.0



[8.2.8]
-------
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ pytest>=3.7.1
pytest-cov==2.8.1
coveralls
pylint
black==21.7b0
black==22.3.0
pillow>=8.4.0
fpdf2>=2.4.6

0 comments on commit 9578e97

Please sign in to comment.