Skip to content

Commit

Permalink
fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimens committed Jun 7, 2024
1 parent e642265 commit 729dd80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/harpy/hpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def lsf():
if os.path.exists(outfile):
click.echo(f"{outfile} exists, overwriting.")
print_notice(Markdown("""
Using a scheduler requires installing an additional Snakemake plugin. If you haven't already, install the `generic-cluster` plugin with:
Using a scheduler requires installing an additional Snakemake plugin. If you haven't already, install the `lsf` plugin with:
```bash
mamba install -c bioconda -c conda-forge snakemake-executor-plugin-lsf
Expand Down Expand Up @@ -110,7 +110,7 @@ def htcondor():
if os.path.exists(outfile):
click.echo(f"{outfile} exists, overwriting.")
print_notice(Markdown("""
Using a scheduler requires installing an additional Snakemake plugin. If you haven't already, install the `generic-cluster` plugin with:
Using a scheduler requires installing an additional Snakemake plugin. If you haven't already, install the `htcondor` plugin with:
```bash
mamba install -c bioconda -c conda-forge snakemake-executor-plugin-htcondor
Expand Down Expand Up @@ -144,7 +144,7 @@ def slurm():
if os.path.exists(outfile):
click.echo(f"{outfile} exists, overwriting.")
print_notice(Markdown("""
Using a scheduler requires installing an additional Snakemake plugin. If you haven't already, install the `generic-cluster` plugin with:
Using a scheduler requires installing an additional Snakemake plugin. If you haven't already, install the `slurm` plugin with:
```bash
mamba install -c bioconda -c conda-forge snakemake-executor-plugin-slurm
Expand Down Expand Up @@ -177,7 +177,7 @@ def googlebatch():
if os.path.exists(outfile):
click.echo(f"{outfile} exists, overwriting.")
print_notice(Markdown("""
Using a scheduler requires installing an additional Snakemake plugin. If you haven't already, install the `generic-cluster` plugin with:
Using a scheduler requires installing an additional Snakemake plugin. If you haven't already, install the `googlebatch` plugin with:
```bash
mamba install -c bioconda -c conda-forge snakemake-executor-plugin-googlebatch
Expand Down

0 comments on commit 729dd80

Please sign in to comment.