-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adjustments for #76 , rename certain options to be more explicit #81
Changes from 1 commit
915c530
85be0a6
ee06114
ee14295
8a20a12
0e41513
5268b7c
ee4db69
077d4ac
460c7c8
19871ab
8720bef
38c333e
3a52c83
98bbf27
a05b426
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -383,17 +383,17 @@ Turn this on to utilize BWA Mem instead of `bwa aln` for alignment. Can be quite | |
|
||
Users can configure to keep/discard/extract certain groups of reads efficiently in the nf-core/eager pipeline. | ||
|
||
### `--bam_keep_mapped_only` | ||
### `--bam_analyse_mapped_only` | ||
|
||
This can be used to only keep mapped reads for downstream analysis. By default turned off, all reads are kept in the BAM file. Unmapped reads are stored both in BAM and FastQ format e.g. for different downstream processing. | ||
This can be used to only keep mapped reads in the BAM file for downstream analysis. By default turned off, all reads are kept in the BAM file. Unmapped reads are stored both in BAM and FastQ format e.g. for different downstream processing. | ||
|
||
### `--bam_keep_all` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the difference of this flag verses There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Removes the unmapped reads file only, the BAM file contains only mapped reads and unmapped reads are entirely discarded (no fastq/bam at all present). I guess I'll have to give this another proper thought. Right now bam_retain_all_reads just is the thing to turn on BAM filtering in general. |
||
|
||
Turned on by default, keeps all reads that were mapped in the dataset. | ||
|
||
### `--bam_filter_reads` | ||
### `--bam_retain_all_reads` | ||
|
||
Specify this, if you want to filter reads for downstream analysis. | ||
Specify this, if you want to filter reads for downstream analysis. This keeps all mapped and unmapped reads in the output, but allows for quality threshold filtering using `--bam_mapping_quality_threshold`. | ||
|
||
### `--bam_mapping_quality_threshold` | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe change following line to: 'By default turned off, where all reads are kept in the bam file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!