79276627

Date: 2024-12-12 21:23:40
Score: 3.5
Natty:
Report link

I tried to recreate your error with the following minimal example (with three input files a.txt, b.txt and c.txt), but it worked fine. Does this work for you as well, and if so, could you tell us the difference to your code?

all_samples = ["a","b","c"]

rule all:
    input:
        "coverage_plot.png"  

rule test:
    input:
        expand("{sample}.txt",sample=all_samples)
    output:
        "coverage_plot.png"
    shell:
        """  
        echo {input}
        """  
Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (2.5): could you tell us
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: kEks