forked from huang1990/B-assembler
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHybrid
More file actions
26 lines (21 loc) · 699 Bytes
/
Hybrid
File metadata and controls
26 lines (21 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# The main entry point of your workflow.
# After configuring, running snakemake --cores N #give the specific number of threads
#import config
configfile: 'config.yaml'
#import rules
include: 'rules/hybridSelectLongRead2.smk'
include: 'rules/firstround.smk'
#include: 'rules/selectEndRead.smk'
include: 'rules/secondround.smk'
include: 'rules/tworoundMerge.smk'
include: 'rules/rearrangeStart.smk'
include: 'rules/hybridPolish.smk'
wildcard_constraints:
extension = '(fa|fna|fasta)', # extension is either .fa, .fna, or .fasta
def all_input(wildcards):
"""
Function defining all requested inputs for the rule all (below).
"""
rule all:
input:
"output/B-assembler.fasta"