You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alignment_s1{{"Description: alignment, sorting <br><br> Main tools: Minimap2 and Samtools <br><br> Commands: minimap2 and samtools sort"}}
54
-
alignment_s2{{"Description: alignment, sorting <br><br> Main tools: Minimap2 and Samtools <br><br> Commands: minimap2 and samtools sort"}}
55
-
alignment_s3{{"Description: bam to fastq conversion, alignment, sorting <br><br> Main tools: Minimap2 and Samtools <br><br> Commands: minimap2 and samtools sort"}}
57
+
alignment_s2{{"Description: bam to fastq conversion, alignment, sorting <br><br> Main tools: Minimap2 and Samtools <br><br> Commands: minimap2 and samtools sort"}}
58
+
alignment_s3{{"Description: alignment, sorting <br><br> Main tools: Minimap2 and Samtools <br><br> Commands: minimap2 and samtools sort"}}
56
59
alignment_s4{{"Description: bam to fastq conversion, alignment, sorting <br><br> Main tools: Minimap2 and Samtools <br><br> Commands: minimap2 and samtools sort"}}
snp_indel_calling_s1{{"Description: SNP/indel variant calling <br><br> Main tools: Clair3 or DeepVariant <br><br> Commands: run_clair3.sh or run_deepvariant"}}
64
67
snp_indel_calling_s2{{"Description: SNP/indel variant calling <br><br> Main tools: Clair3 or DeepVariant <br><br> Commands: run_clair3.sh or run_deepvariant"}}
65
68
snp_indel_calling_s3{{"Description: SNP/indel variant calling <br><br> Main tools: Clair3 or DeepVariant <br><br> Commands: run_clair3.sh or run_deepvariant"}}
66
69
snp_indel_calling_s4{{"Description: SNP/indel variant calling <br><br> Main tools: Clair3 or DeepVariant <br><br> Commands: run_clair3.sh or run_deepvariant"}}
*[See the list of software and their versions used by this version of pipeface](./docs/software_versions.txt) as well as the [list of variant databases and their versions](./docs/database_versions.txt) if variant annotation is carried out (assuming the default [nextflow_pipeface.config](./config/nextflow_pipeface.config) file is used).*
tar -xzf pb-CpG-tools-v2.3.2-x86_64-unknown-linux-gnu.tar.gz
149
+
```
150
+
129
151
## 3. Modify in_data.csv
130
152
131
153
Specify the sample ID, file path to the data, data type, file path to regions of interest bed file (optional) and file path to clair3 model (if running Clair3) for each data to be analysed. Eg:
@@ -171,7 +193,13 @@ Modify access to project specific directories. Eg:
171
193
Specify the path to `in_data.csv`. Eg:
172
194
173
195
```json
174
-
"input": "./config/in_data.csv",
196
+
"in_data": "./config/in_data.csv",
197
+
```
198
+
199
+
Specify the input data format ('ubam_fastq'). Eg:
200
+
201
+
```json
202
+
"in_data_format": "ubam_fastq",
175
203
```
176
204
177
205
Specify the path to the reference genome and it's index. Eg:
@@ -188,7 +216,7 @@ Specify the path to the reference genome and it's index. Eg:
188
216
"ref_index": "./hs1.fa.fai",
189
217
```
190
218
191
-
Optionally specify the path to the tandem repeat bed file. Eg:
219
+
Optionally specify the path to the tandem repeat bed file. Set to 'NONE' if not required. Eg:
192
220
193
221
```json
194
222
"tandem_repeat": "./*.trf.bed",
@@ -202,6 +230,7 @@ Optionally specify the path to the tandem repeat bed file. Eg:
202
230
203
231
Specify the SNP/indel caller to use ('clair3' or 'deepvariant'). Eg:
204
232
233
+
205
234
```json
206
235
"snp_indel_caller": "clair3",
207
236
```
@@ -212,6 +241,8 @@ Specify the SNP/indel caller to use ('clair3' or 'deepvariant'). Eg:
212
241
"snp_indel_caller": "deepvariant",
213
242
```
214
243
244
+
> **_Note:_** Running DeepVariant on ONT data assumes r10 data
245
+
215
246
Specify the SV caller to use ('sniffles', 'cutesv' or 'both'). Eg:
216
247
217
248
```json
@@ -242,18 +273,62 @@ Specify whether variant annotation should be carried out ('yes' or 'no'). Eg:
242
273
"annotate": "yes",
243
274
```
244
275
276
+
> **_Note:_** SNP/indel variant annotation is only available for hg38
277
+
278
+
Specify whether alignment depth should be calculated ('yes' or 'no'). Eg:
279
+
280
+
```json
281
+
"calculate_depth": "no",
282
+
```
283
+
284
+
*OR*
285
+
286
+
```json
287
+
"calculate_depth": "yes",
288
+
```
289
+
245
290
Specify the directory in which to write the pipeline outputs (please provide a full path). Eg:
246
291
247
292
```json
248
293
"outdir": "/g/data/ox63/results"
249
294
```
250
295
251
-
Specify the path to DeepVariant GPU container v1.6.1 (singularity image file). Eg:
296
+
Specify the path to the DeepVariant GPU container v1.6.1 (singularity image file) (if running DeepVariant). Eg:
0 commit comments