Skip to content

Commit

Permalink
add missing args
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Jul 11, 2023
1 parent 8f67bf4 commit dc6895a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 2 deletions.
6 changes: 4 additions & 2 deletions snakemake/executors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,7 @@ def __init__(
dag,
stats,
logger,
None,
jobname=jobname,
max_status_checks_per_second=10,
)
Expand Down Expand Up @@ -855,7 +856,6 @@ def __init__(
dag: DAGExecutorInterface,
stats: StatsExecutorInterface,
logger: LoggerExecutorInterface,
cores,
jobname="snakejob.{rulename}.{jobid}.sh",
drmaa_args="",
drmaa_log_dir=None,
Expand All @@ -866,7 +866,7 @@ def __init__(
dag,
stats,
logger,
cores,
None,
jobname=jobname,
max_status_checks_per_second=max_status_checks_per_second,
)
Expand Down Expand Up @@ -1063,6 +1063,7 @@ def __init__(
dag,
stats,
logger,
None,
jobname=jobname,
max_status_checks_per_second=10,
disable_envvar_declarations=True,
Expand Down Expand Up @@ -1513,6 +1514,7 @@ def __init__(
dag,
stats,
logger,
None,
max_status_checks_per_second=max_status_checks_per_second,
disable_default_remote_provider_args=True,
disable_default_resources_args=True,
Expand Down
1 change: 1 addition & 0 deletions snakemake/executors/azure_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ def __init__(
dag,
stats,
logger,
None,
jobname=jobname,
max_status_checks_per_second=max_status_checks_per_second,
)
Expand Down
1 change: 1 addition & 0 deletions snakemake/executors/flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def __init__(
dag,
stats,
logger,
None,
jobname=jobname,
max_status_checks_per_second=10,
)
Expand Down
1 change: 1 addition & 0 deletions snakemake/executors/ga4gh_tes.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def __init__(
dag,
stats,
logger,
None,
jobname=jobname,
max_status_checks_per_second=max_status_checks_per_second,
)
Expand Down
1 change: 1 addition & 0 deletions snakemake/executors/google_lifesciences.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def __init__(
dag,
stats,
logger,
None,
jobname=jobname,
max_status_checks_per_second=max_status_checks_per_second,
)
Expand Down
1 change: 1 addition & 0 deletions snakemake/executors/slurm/slurm_submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def __init__(
dag,
stats,
logger,
None,
jobname=jobname,
max_status_checks_per_second=max_status_checks_per_second,
)
Expand Down

0 comments on commit dc6895a

Please sign in to comment.