Skip to content
Snippets Groups Projects
Snakefile 568 B
Newer Older
import pandas as pd

configfile: "config.yaml"

localrules: finish

#################################################################################
### Final rule
#################################################################################

rule finish:
	input:

##################################################################################
# Execution dependend on sequencing mode
##################################################################################

include: 'paired_end.snakefile'
include: 'single_end.snakefile'