rule cat: """ Split a FASTA file with the desired number of sequences per chunk """ input: __cat_input output: __cat_output shell: """ cat {input} > {output} """