You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9
9
### `Added`
10
10
*[#80](https://github.com/nf-core/eager/pull/80) - BWA Index file handling
11
11
*[#77](https://github.com/nf-core/eager/pull/77) - Lots of documentation updates by [@jfy133](https://github.com/jfy133)
12
+
*[#81](https://github.com/nf-core/eager/pull/81) - Renaming of certain BAM options
12
13
13
14
### `Fixed`
14
15
*[#84](https://github.com/nf-core/eager/pull/85) - Fix for [Samtools index issues](https://github.com/nf-core/eager/issues/84)
Copy file name to clipboardExpand all lines: docs/usage.md
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -383,17 +383,25 @@ Turn this on to utilize BWA Mem instead of `bwa aln` for alignment. Can be quite
383
383
384
384
Users can configure to keep/discard/extract certain groups of reads efficiently in the nf-core/eager pipeline.
385
385
386
-
### `--bam_keep_mapped_only`
386
+
### `--bam_retain_unmapped`
387
387
388
-
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.
388
+
Specify this to keep also unmapped reads in the BAM file. This is the default setting, only mapping quality filters are applied to all reads.
389
389
390
-
### `--bam_keep_all`
390
+
### `--bam_separate_unmapped`
391
391
392
-
Turned on by default, keeps all reads that were mapped in the dataset.
392
+
Separates the mapped and unmapepd reads, keeps only mapped reads in the BAM file for downstream analysis.
393
393
394
-
### `--bam_filter_reads`
394
+
### `--bam_unmapped_to_fastq`
395
395
396
-
Specify this, if you want to filter reads for downstream analysis.
396
+
Converted unmapped reads in BAM format to compressed FastQ format.
397
+
398
+
### `--bam_discard_unmapped`
399
+
400
+
Discards unmapped reads in either FastQ or BAM format, depending on the choice of the `--bam_unmapped_rm_type`.
401
+
402
+
### `--bam_unmapped_rm_type`
403
+
404
+
Defines which unmapped read format to discard, options available are `bam` or `fastq.gz`. By default, `fastq.gz` format will be kept and `bam` will be removed.
0 commit comments