You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have encountered this minor issue where .items() is not recognized for the Snakemake input.
For example:
rule a:
input:
IN_A = 'file_a.txt',
IN_B = 'file_b.txt',
output:
OUT = 'all.txt'
run:
with open(output.OUT, 'w') as handle:
for key, path in input.items():
handle.write(path)
In this case PyCharm gives the warning: unresolved reference 'items' in 'input'
The text was updated successfully, but these errors were encountered:
Hey,
I have encountered this minor issue where
.items()
is not recognized for the Snakemake input.For example:
In this case PyCharm gives the warning:
unresolved reference 'items' in 'input'
The text was updated successfully, but these errors were encountered: