
rule all:
    input: "test.fastq.bz2"

rule gz_to_bz2:
    input:
        "test.fastq.gz"
    output:
        "test.fastq.bz2"
    threads: 2
    wrapper:
        "main/wrappers/gz_to_bz2"
