|
616 | 616 | }, |
617 | 617 | "bt2n": { |
618 | 618 | "type": "integer", |
| 619 | + "default": 0, |
619 | 620 | "description": "Specify the -N parameter for bowtie2 (mismatches in seed). This will override defaults from alignmode/sensitivity.", |
620 | 621 | "fa_icon": "fas fa-sort-numeric-down", |
621 | 622 | "help_text": "The number of mismatches allowed in the seed during seed-and-extend procedure of Bowtie2. This will override any values set with `--bt2_sensitivity`. Can either be 0 or 1. Default: 0 (i.e. use`--bt2_sensitivity` defaults).\n\n> Modifies Bowtie2 parameters: `-N`", |
|
626 | 627 | }, |
627 | 628 | "bt2l": { |
628 | 629 | "type": "integer", |
| 630 | + "default": 0, |
629 | 631 | "description": "Specify the -L parameter for bowtie2 (length of seed substrings). This will override defaults from alignmode/sensitivity.", |
630 | 632 | "fa_icon": "fas fa-ruler-horizontal", |
631 | 633 | "help_text": "The length of the seed sub-string to use during seeding. This will override any values set with `--bt2_sensitivity`. Default: 0 (i.e. use`--bt2_sensitivity` defaults: [20 for local and 22 for end-to-end](http://bowtie-bio.sourceforge.net/bowtie2/manual.shtml#command-line).\n\n> Modifies Bowtie2 parameters: `-L`" |
632 | 634 | }, |
633 | 635 | "bt2_trim5": { |
634 | 636 | "type": "integer", |
| 637 | + "default": 0, |
635 | 638 | "description": "Specify number of bases to trim off from 5' (left) end of read before alignment.", |
636 | 639 | "fa_icon": "fas fa-cut", |
637 | 640 | "help_text": "Number of bases to trim at the 5' (left) end of read prior alignment. Maybe useful when left-over sequencing artefacts of in-line barcodes present Default: 0\n\n> Modifies Bowtie2 parameters: `-bt2_trim5`" |
638 | 641 | }, |
639 | 642 | "bt2_trim3": { |
640 | 643 | "type": "integer", |
| 644 | + "default": 0, |
641 | 645 | "description": "Specify number of bases to trim off from 3' (right) end of read before alignment.", |
642 | 646 | "fa_icon": "fas fa-cut", |
643 | 647 | "help_text": "Number of bases to trim at the 3' (right) end of read prior alignment. Maybe useful when left-over sequencing artefacts of in-line barcodes present Default: 0.\n\n> Modifies Bowtie2 parameters: `-bt2_trim3`" |
|
695 | 699 | }, |
696 | 700 | "bam_mapping_quality_threshold": { |
697 | 701 | "type": "integer", |
| 702 | + "default": 0, |
698 | 703 | "description": "Minimum mapping quality for reads filter.", |
699 | 704 | "fa_icon": "fas fa-greater-than-equal", |
700 | 705 | "help_text": "Specify a mapping quality threshold for mapped reads to be kept for downstream analysis. By default keeps all reads and is therefore set to `0` (basically doesn't filter anything).\n\n> Modifies samtools view parameter: `-q`" |
701 | 706 | }, |
702 | 707 | "bam_filter_minreadlength": { |
703 | 708 | "type": "integer", |
| 709 | + "default": 0, |
704 | 710 | "fa_icon": "fas fa-ruler-horizontal", |
705 | 711 | "description": "Specify minimum read length to be kept after mapping.", |
706 | 712 | "help_text": "Specify minimum length of mapped reads. This filtering will apply at the same time as mapping quality filtering.\n\nIf used _instead_ of minimum length read filtering at AdapterRemoval, this can be useful to get more realistic endogenous DNA percentages, when most of your reads are very short (e.g. in single-stranded libraries) and would otherwise be discarded by AdapterRemoval (thus making an artificially small denominator for a typical endogenous DNA calculation). Note in this context you should not perform mapping quality filtering nor discarding of unmapped reads to ensure a correct denominator of all reads, for the endogenous DNA calculation.\n\n> Modifies filter_bam_fragment_length.py parameter: `-l`" |
|
1065 | 1071 | }, |
1066 | 1072 | "freebayes_g": { |
1067 | 1073 | "type": "integer", |
| 1074 | + "default": 0, |
1068 | 1075 | "description": "Specify to skip over regions of high depth by discarding alignments overlapping positions where total read depth is greater than specified in --freebayes_C.", |
1069 | 1076 | "fa_icon": "fab fa-think-peaks", |
1070 | 1077 | "help_text": "Specify to skip over regions of high depth by discarding alignments overlapping positions where total read depth is greater than specified C. Not set by default.\n\n> Modifies freebayes parameter: `-g`" |
|
0 commit comments