@@ -107,6 +107,39 @@ If not specified, this file will be automatically created by the pipeline.
...
@@ -107,6 +107,39 @@ If not specified, this file will be automatically created by the pipeline.
In this case, the `--fasta` reference genome will be used.
In this case, the `--fasta` reference genome will be used.
Note that the `--digestion` or `--restriction_site` parameter is mandatory to create this file.
Note that the `--digestion` or `--restriction_site` parameter is mandatory to create this file.
## Digestion of the reads
### `--cutsite`
Generates new gzipped fastq files from original fastq. The function will cut the reads at their religation sites and creates new pairs of reads with the different fragments obtained after cutting at the digestion sites.
Default: false
```bash
--cutsite
```
> :warning: **Warning**: This option cannot be used at the same time as the iterative mapping.
### `--cutsite_mode`
Mode to use to make the digestion. Three values possible: "all", "for_vs_rev", "pile".
Default: for_vs_rev
```bash
--cutsite_mode'[all | for_vs_rev | pile]'
```
### `--cutsite_seed`
Minimum size of a fragment (i.e. seed size used in mapping as reads smaller won't be mapped.)
Default: 0
```bash
--cutsite_seed'[Size of fragment]'
```
## Hicstuff specific parameters
## Hicstuff specific parameters
The following options are defined in the `nextflow.config` file, and can be
The following options are defined in the `nextflow.config` file, and can be
...
@@ -117,16 +150,27 @@ command line parameters.
...
@@ -117,16 +150,27 @@ command line parameters.
#### `--hicstuff_bwt2_align_opts`
#### `--hicstuff_bwt2_align_opts`
Bowtie2 alignment option for end-to-end mapping.
Bowtie2 alignment option for normal mode end-to-end mapping.
Default: '--very-sensitive-local'
Default: '--very-sensitive-local'
```bash
```bash
--hicstuff_bwt2_align_opts'[Options for bowtie2 mapping on full reads]'
--hicstuff_bwt2_align_opts'[Options for bowtie2 mapping on full reads]'
```
```
#### `--iteralign`
Truncate reads from a fastq file to 20 basepairs and iteratively extend and re-align the unmapped reads to optimize the proportion of uniquely aligned reads in a 3C library.
Default: false
```
--iteralign
```
Use [`--hicstuff_min_qual`](#hicstuff_min_qual) to set the minimum quality for the iterative alignment.
#### `--save_bam`
#### `--save_bam`
If specified, save BAM files after mapping. Default: false
If specified, save BAM files after mapping (works for normal and iterative mode). Default: false
Generates new gzipped fastq files from original fastq. The function will cut the reads at their religation sites and creates new pairs of reads with the different fragments obtained after cutting at the digestion sites.
Default: false
```bash
--cutsite
```
> :warning: **Warning**: This option cannot be used at the same time as the iterative mapping.
### `--cutsite_mode`
Mode to use to make the digestion. Three values possible: "all", "for_vs_rev", "pile".
Default: for_vs_rev
```bash
--cutsite_mode'[all | for_vs_rev | pile]'
```
### `--cutsite_seed`
Minimum size of a fragment (i.e. seed size used in mapping as reads smaller won't be mapped.)