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
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
28
28
*[#504] Removed sexdeterrmine-snps plot from MultiQC report.
29
29
* Nuclear contamination results are now shown in the MultiQC report.
30
30
* Nuclear contamination is now reported with the correct library names.
31
+
* Tutorial on how to use profiles for reproducible science (i.e. parameter sharing between different groups)
31
32
32
33
### `Fixed`
33
34
@@ -43,6 +44,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
43
44
*[#444](https://github.com/nf-core/eager/issues/444) - Provide option for preserving realigned bam + index
44
45
* Increase MultiQC process memory requirements to ensure enough memory for large runs
45
46
* Fixed deduplication output logic. Will now pass along only the post-rmdup bams if duplicate removal is not skipped, instead of both the post-rmdup and pre-rmdup bams.
47
+
*[#497](https://github.com/nf-core/eager/issues/497) - Simplifies number of parameters required to run bam filtering
*[#508](https://github.com/nf-core/eager/issues/508) - Made Markduplicates default dedupper due to narrower context specificity of dedup
50
+
*[#516](https://github.com/nf-core/eager/issues/516) - Made bedtools not report out of memory exit code when warning of inconsistant FASTA/Bed entry names
46
51
47
52
### `Dependencies`
48
53
@@ -60,6 +65,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
help='output of samtools flagstat in a txt file (at least one required). If two files are supplied, the mapped reads of the second file is divided by the total reads in the first, since it assumes that the <samplefile.stats> are related to the same sample. Useful after BAM filtering')
parser.add_argument('--output', '-o', nargs='?', help='specify a file format for an output file. Options: <json> for a MultiQC json output. Default: none')
28
28
parser.add_argument('--name', '-n', nargs='?', help='specify name for the output file. Default: extracted from the first samtools flagstat file provided')
29
29
args=parser.parse_args()
@@ -37,7 +37,14 @@
37
37
#Extract number of mapped reads pre-quality filtering:
print("Incorrect input, please provide at least a samtools flag stats as input\nRun:\npython endorS.py --help \nfor more information on how to run this script")
43
50
sys.exit()
@@ -49,7 +56,14 @@
49
56
#Extract number of mapped reads post-quality filtering:
0 commit comments