-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpipelines.yml
More file actions
213 lines (191 loc) · 3.87 KB
/
pipelines.yml
File metadata and controls
213 lines (191 loc) · 3.87 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
pipelines:
### Sub-Pipelines ###
# Trimming and FastQC
qc:
stages:
- qc_fastqc
- trim_bbmapAQ10L70
- qc_fastqc
# Keep *only* reads matching last *.fasta.gz (from ref)
enrich:
stages:
- map_bbmapS:
hide: true
- extract_readsG12
# Remove reads matching last bowtie2 and hisat2 indicies (from ref)
deplete:
stages:
- get_unmapped_vp:
hide: true
- map_bowtie2:
hide: true
- extract_readsf12
deplete2:
stages:
- get_unmapped_vp:
hide: true
- map_bowtie2:
hide: true
- extract_readsf12
- filter_trf
# Assemble (by sample) using Spades Single Cell mode and remove short contigs
assemble_single:
stages:
- group_sample
- assemble_spadesSc:
hide: true
- format_bbmapL200
# Assemble (by sample) using Spades Metagenomic mode and remove short contigs
# (removes low entropy reads prior to assembly)
assemble_meta:
stages:
- dust_bbmapE60:
hide: true
- group_sample
- assemble_spadesMeta:
hide: true
- format_bbmapL200
# Compute coverage and sorted bam file using bowtie2
coverage:
stages:
- index_bowtie2:
hide: true
- map_bowtie2S:
hide: true
- sort_bam:
hide: true
- markdup_sambambaRM
- coverage_samtools
- basecov_bedtools
# Remove human contigs and create classified bins using BLAST
blastbin:
stages:
- annotate_blastE2MegaBest:
hide: true
- fastaqc_vp:
hide: true
- blastfilter_vpU200:
hide: true
- ref_NT:
hide: true
- annotate_blastE10Best:
hide: true
- ref_NcbiTaxonomy:
hide: true
- group_sample:
hide: true
- blastbin_vp
scaffold:
stages:
- scaffold_vp
- coverage:
hide: true
- group_sample
- polish_pilonSIL:
hide: true
- coverage
- fastaqc_vp
- group_ALL
- bin_vpSpecies
summarize:
stages:
- collect_vp
- qc_multiqc
- ref_VHDB
- group_ALL
- summarize_vp
- group_ALL
- report_pathogen_vp
# Re-Assemble created bins (unused)
reassemble:
stages:
- enrich:
hide: true
- group_sample
- group_BIN
- assemble_spadesSc:
hide: true
- group_sample
- format_bbmapL200
# Reference guidedworkflow
targeted_virus:
stages:
- qc
- enrich
- assemble_single
- coverage
- blastbin
rnaseq_report:
stages:
- group_ALL
- qc_multiqc
- group_ALL
- tximport_vp
- group_ALL
- report_vp
rnaseq_salmon:
stages:
- qc
- quant_salmon_sa
- rnaseq_report
rnaseq_star_rsem:
stages:
- qc
- map_starT
- quant_rsem
- rnaseq_report
rnaseq_star_salmon:
stages:
- qc
- map_starT
- quant_salmonG
- rnaseq_report
umimap_starT:
stages:
- map_starT
- sort_txbam
- dedup_umi_vp
- collate_txbam
- fix_umi_vp
rnaseq_umi_star_salmon:
stages:
- extract_umi_vp
- qc
- umimap_starT
- quant_salmonG
- rnaseq_report
rnaseq_star_umi_salmon:
stages:
- qc
- umimap_starT
- quant_salmonG
- rnaseq_report
rnaseq_umi_star_rsem:
stages:
- extract_umi_vp
- qc
- umimap_starT
- quant_rsem
- rnaseq_report
rnaseq_star_exon:
stages:
- qc
- map_starT
- quant_exon_vp
- rnaseq_report
virus:
stages:
- deplete
- assemble_meta
- coverage
- blastbin
- scaffold
- summarize
pathogen:
stages:
- deplete2
- assemble_meta
- coverage
- blastbin
- scaffold
- summarize