We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
rule a: input: "test.in" output: "test.out" run: with open(output[0], "w") as f: print(threads, file=f)
code works ok in 8.20.6, threads will be 1 by default here
threads
1
The text was updated successfully, but these errors were encountered:
And similar for:
rule a: input: "test.in" output: "test.out" run: with open(input[0]) as f: with open(output[0], "w") as out: print(resources.slurm_extra, file=out)
Sorry, something went wrong.
5ee2a4e
No branches or pull requests
code works ok in 8.20.6,
threads
will be1
by default hereThe text was updated successfully, but these errors were encountered: