File: bclconvert.md

package info (click to toggle)
multiqc 1.21%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 30,164 kB
  • sloc: python: 52,323; javascript: 7,064; sh: 76; makefile: 21
file content (44 lines) | stat: -rw-r--r-- 1,756 bytes parent folder | download | duplicates (2)
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
---
name: BCL Convert
url: https://support.illumina.com/sequencing/sequencing_software/bcl-convert.html
description: >
  bclconvert can be used to both demultiplex data and convert BCL files to
  FASTQ file formats for downstream analysis.
---

This BclConvert module is based on the bcl2fastq multiqc module. It can parse multiple
bclconvert run outputs as long as they are from the same sequencing run. When doing this,
the undetermined reads will be 'corrected' and re-calculated (as an unknown read from
some one bclcovnert run might not be truly unknown, but simply from another run).

#### Calculate estimated depth

You can specify a genome size in config

It's often useful to talk about sequencing yield in terms of estimated depth of coverage.
In order to make MultiQC show the estimated depth for each sample, specify the reference genome/target size in your [MultiQC configuration](http://multiqc.info/docs/#configuring-multiqc):

```yaml
bclconvert:
  genome_size: 3049315783
```

The coverage depth will be estimated as the yield Q30 dvivided by the genome size.

MultiQC comes with effective genome size presets for Human and Mouse, so you can
provide the genome build name instead, like this: `genome_size: hg38_genome`. The
following values are supported: `hg19_genome`, `hg38_genome`, `mm10_genome`.

#### Add barplots containing undetermined barcodes

By default, the bar plot of undetermined barcodes is only shown when reporting from a single demultiplexing run.

If you would like to show it with multiple runs (eg. bclconvert runs are split by lane),
you can specify following parameter in your MultiQC config:

```yaml
bclconvert:
  create_undetermined_barcode_barplots: True
```

The default of this configuration value is `False`