I am new to snakemake. I have a simple quesiton and I can not do the fastqc output into a directory
rule run_fastqc:
    input:
        "data/ERR127302_1_subset.fastq.gz"
    output:
        directory("result/")
    shell:
        "fastqc {input} -o {output} "
I try the command:
snakemake -j 1 -n
The output is:
Building DAG of jobs...
Nothing to be done.
is there any advices ? Thanks.
it is right answer