|
14 | 14 | * [`--design`](#--design) |
15 | 15 | * [Generic arguments](#generic-arguments) |
16 | 16 | * [`--singleEnd`](#--singleend) |
17 | | - * [`--narrowPeak`](#--narrowpeak) |
| 17 | + * [`--seqCenter`](#--seqcenter) |
18 | 18 | * [`--fragment_size`](#--fragment_size) |
| 19 | + * [`--fingerprintBins`](#--fingerprintbins) |
19 | 20 | * [Reference genomes](#reference-genomes) |
20 | 21 | * [`--genome` (using iGenomes)](#--genome-using-igenomes) |
21 | 22 | * [`--fasta`](#--fasta) |
|
34 | 35 | * [`--keepDups`](#--keepdups) |
35 | 36 | * [`--keepMultiMap`](#--keepmultimap) |
36 | 37 | * [`--saveAlignedIntermediates`](#--savealignedintermediates) |
| 38 | +* [Peaks](#peaks) |
| 39 | + * [`--narrowPeak`](#--narrowpeak) |
| 40 | + * [`--broad_cutoff`](#--broad_cutoff) |
| 41 | + * [`--saveMACSPileup`](#--savemacspileup) |
| 42 | + * [`--skipDiffAnalysis`](#--skipdiffanalysis) |
37 | 43 | * [Job resources](#job-resources) |
38 | 44 | * [Automatic resubmission](#automatic-resubmission) |
39 | 45 | * [Custom resource requests](#custom-resource-requests) |
@@ -184,12 +190,17 @@ By default, the pipeline expects paired-end data. If you have single-end data, s |
184 | 190 |
|
185 | 191 | It is not possible to run a mixture of single-end and paired-end files in one run. |
186 | 192 |
|
187 | | -### `--narrowPeak` |
188 | | -MACS2 is run by default with the [`--broad`](https://github.com/taoliu/MACS#--broad) flag. Specify this flag to call peaks in narrowPeak mode. |
| 193 | +### `--seqCenter` |
| 194 | +Sequencing center information that will be added to read groups in BAM files. |
189 | 195 |
|
190 | 196 | ### `--fragment_size` |
191 | 197 | Number of base pairs to extend single-end reads when creating bigWig files. Default: `0` |
192 | 198 |
|
| 199 | +### `--fingerprintBins` |
| 200 | +Number of genomic bins to use when generating the deepTools fingerprint plot. Larger numbers will give a smoother profile, but take longer to run. |
| 201 | + |
| 202 | +Default: `500000` |
| 203 | + |
193 | 204 | ## Reference genomes |
194 | 205 |
|
195 | 206 | The pipeline config files come bundled with paths to the illumina iGenomes reference index files. If running with docker or AWS, the configuration is set up to use the [AWS-iGenomes](https://ewels.github.io/AWS-iGenomes/) resource. |
@@ -310,6 +321,20 @@ Reads mapping to multiple locations in the genome are not filtered from alignmen |
310 | 321 | ### `--saveAlignedIntermediates` |
311 | 322 | By default, intermediate BAM files will not be saved. The final BAM files created after the appropriate filtering step are always saved to limit storage usage. Set to true to also save other intermediate BAM files. |
312 | 323 |
|
| 324 | +## Peaks |
| 325 | + |
| 326 | +### `--narrowPeak` |
| 327 | +MACS2 is run by default with the [`--broad`](https://github.com/taoliu/MACS#--broad) flag. Specify this flag to call peaks in narrowPeak mode. |
| 328 | + |
| 329 | +### `--broad_cutoff` |
| 330 | +Specifies broad cutoff value for MACS2. Only used when --narrowPeak isnt specified. Default: 0.1 |
| 331 | + |
| 332 | +### `--saveMACSPileup` |
| 333 | +Instruct MACS2 to create bedGraph files using the `-B --SPMR` parameters. |
| 334 | + |
| 335 | +### `--skipDiffAnalysis` |
| 336 | +Skip read counting and differential analysis step. |
| 337 | + |
313 | 338 | ## Job resources |
314 | 339 | ### Automatic resubmission |
315 | 340 | Each step in the pipeline has a default set of requirements for number of CPUs, memory and time. For most of the steps in the pipeline, if the job exits with an error code of `143` (exceeded requested resources) it will automatically resubmit with higher requests (2 x original, then 3 x original). If it still fails after three times then the pipeline is stopped. |
|
0 commit comments