include: "import.snakefile"

rule:
	input: 'test.inter'
	output: 'test.out'
	shell: 
		'cp {input} {output}'
