Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: declare associative arrays in bash scripts #1844

Merged
merged 1 commit into from Sep 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion snakemake/script.py
Expand Up @@ -351,7 +351,7 @@ def encode_snakemake(self, smk: Snakemake) -> str:
main_aa[var] = val

arrays.append(f"{self.prefix}={self.dict_to_aa(main_aa)}")
return "\n".join(arrays)
return "\n".join([f"declare -A {aa}" for aa in arrays])

@staticmethod
def dict_to_aa(d: dict) -> str:
Expand Down