diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eda41bd..57ea5c53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### `Fixed` +- [#181](https://github.com/IntGenomicsLab/lrsomatic/pull/181) - NanoPlot pre- and post-alignment statistics now reach MultiQC. `ch_nanoplot_pre_txt` and `ch_nanoplot_post_txt` were declared empty and mixed into the MultiQC inputs, but never assigned from `NANOPLOT_PRE.out.txt` / `NANOPLOT_POST.out.txt`, so the NanoStat section was silently missing from every report (@ljwharbers). +- [#181](https://github.com/IntGenomicsLab/lrsomatic/pull/181) - `NANOPLOT_PRE` now includes the replicate in its output prefix, so samples with more than one replicate no longer collapse into a single MultiQC sample (@ljwharbers). +- [#181](https://github.com/IntGenomicsLab/lrsomatic/pull/181) - samtools stats/flagstat/idxstats and mosdepth outputs are now prefixed `_` instead of ``. The tumor and normal files of a matched pair shared a basename, so MultiQC logged `Duplicate sample name found! Overwriting` and reported only one of the two; the general statistics table now has one row per BAM (`_tumor`, `_normal`), which the post-alignment NanoStat row joins (@ljwharbers). +- [#181](https://github.com/IntGenomicsLab/lrsomatic/pull/181) - Raised MultiQC's `log_filesize_limit` to 500 MB. `samtools stats` output for long reads is 70 MB and more, above the 50 MB default, so MultiQC silently skipped it and the samtools stats section covered only small files (@ljwharbers). - [#186](https://github.com/IntGenomicsLab/lrsomatic/pull/186) - Stopped snapshotting the md5 of sample4's merged tumour BAM and its index in the `clair_only` nf-test: `samtools merge` gives the colliding `@PG` IDs of the two replicates a random hex suffix, so neither digest is reproducible. The alignment records are, and are now asserted with `bam().getReadsMD5()` instead (@ljwharbers). - [#182](https://github.com/IntGenomicsLab/lrsomatic/pull/182) - Added `--vcf` to the default `vep_args` so VEP writes VCF output rather than its default tab-delimited format (@AmberVerhasselt). - [#183](https://github.com/IntGenomicsLab/lrsomatic/pull/183) - Corrected the `github` URL for Laurens Lambrechts in `manifest.contributors`, which was a copy of @MariosEft97's, to @laulambr. RO-Crate metadata updated to match (@ljwharbers). diff --git a/CITATIONS.md b/CITATIONS.md index 811a1ea9..b7fcbea2 100644 --- a/CITATIONS.md +++ b/CITATIONS.md @@ -70,6 +70,10 @@ > Ewels P, Magnusson M, Lundin S, Käller M. MultiQC: summarize analysis results for multiple tools and samples in a single report. Bioinformatics. 2016 Oct 1;32(19):3047-8. doi: 10.1093/bioinformatics/btw354. Epub 2016 Jun 16. PubMed PMID: 27312411; PubMed Central PMCID: PMC5039924. +- [NanoPlot](https://pubmed.ncbi.nlm.nih.gov/37171891/) + + > De Coster W, Rademakers R. NanoPack2: population-scale evaluation of long-read sequencing data. Bioinformatics. 2023 May 4;39(5):btad311. doi: 10.1093/bioinformatics/btad311. PubMed PMID: 37171891; PubMed Central PMCID: PMC10196664. + - [SAMtools](https://pubmed.ncbi.nlm.nih.gov/19505943/) > Li H, Handsaker B, Wysoker A, Fennell T, Ruan J, Homer N, Marth G, Abecasis G, Durbin R; 1000 Genome Project Data Processing Subgroup. The Sequence Alignment/Map format and SAMtools. Bioinformatics. 2009 Aug 15;25(16):2078-9. doi: 10.1093/bioinformatics/btp352. Epub 2009 Jun 8. PubMed PMID: 19505943; PubMed Central PMCID: PMC2723002. diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml index 95c83b7c..2a5e14c2 100644 --- a/assets/multiqc_config.yml +++ b/assets/multiqc_config.yml @@ -10,4 +10,14 @@ report_section_order: export_plots: true +# Post-alignment NanoPlot files are named __aln_NanoStats.txt. Dropping "_aln" +# puts their NanoStat row on the same _ row as samtools and mosdepth for that BAM. +extra_fn_clean_exts: + - "_aln" + +# samtools stats on long reads writes 70+ MB files (its read-length and coverage histograms run to +# the longest read and deepest base). MultiQC silently skips any file above log_filesize_limit, +# whose default is 50 MB, so the samtools stats section would only ever cover small files. +log_filesize_limit: 500000000 + disable_version_detection: true diff --git a/conf/modules.config b/conf/modules.config index 08b2dd55..7c9f98f3 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -32,7 +32,8 @@ process { } withName: '.*:BAM_STATS_SAMTOOLS:.*' { - ext.prefix = { "${meta.id}" } + // Type in the prefix, otherwise the tumor and normal files of a pair share a basename and MultiQC keeps only one + ext.prefix = { "${meta.id}_${meta.type}" } publishDir = [ path: { "${params.outdir}/${meta.id}/qc/${meta.type}/samtools/" }, mode: params.publish_dir_mode, @@ -60,7 +61,8 @@ process { } withName: '.*:NANOPLOT_PRE' { - ext.prefix = { "${meta.id}_${meta.type}_ubam" } + // Replicate in the prefix, otherwise MultiQC keeps only one identically named NanoStats.txt + ext.prefix = { "${meta.id}_${meta.type}_rep${meta.replicate}_ubam" } publishDir = [ path: { "${params.outdir}/${meta.id}/qc/${meta.type}/nanoplot_ubam_rep${meta.replicate}" }, mode: params.publish_dir_mode, @@ -88,6 +90,8 @@ process { withName: '.*:MOSDEPTH' { ext.args = { '-n -x' } + // Type in the prefix, otherwise the tumor and normal files of a pair share a basename and MultiQC keeps only one + ext.prefix = { "${meta.id}_${meta.type}" } publishDir = [ path: { "${params.outdir}/${meta.id}/qc/${meta.type}/mosdepth" }, mode: params.publish_dir_mode, diff --git a/docs/output.md b/docs/output.md index 8166202c..bb3485ce 100644 --- a/docs/output.md +++ b/docs/output.md @@ -178,18 +178,18 @@ QC outputs are placed under `tumor/` for all samples, and additionally under `no │ │ ├── fibertoolsrs │ │ │ ├── sample_qc.txt │ │ ├── mosdepth -│ │ │ ├── sample.mosdepth.global.dist.txt -│ │ │ ├── sample.mosdepth.summary.txt +│ │ │ ├── sample_tumor.mosdepth.global.dist.txt +│ │ │ ├── sample_tumor.mosdepth.summary.txt │ │ ├── nanoplot_aln │ │ │ ├── sample_tumor_aln_NanoStats.txt │ │ │ ├── sample_tumor_aln_NanoPlot-report.html │ │ ├── nanoplot_ubam_rep1 -│ │ │ ├── sample_tumor_ubam_NanoStats.txt -│ │ │ ├── sample_tumor_ubam_NanoPlot-report.html +│ │ │ ├── sample_tumor_rep1_ubam_NanoStats.txt +│ │ │ ├── sample_tumor_rep1_ubam_NanoPlot-report.html │ │ ├── samtools -│ │ │ ├── sample.flagstat -│ │ │ ├── sample.idxstats -│ │ │ ├── sample.stats +│ │ │ ├── sample_tumor.flagstat +│ │ │ ├── sample_tumor.idxstats +│ │ │ ├── sample_tumor.stats │ ├── normal # paired samples only │ │ └── [same subdirectories as tumor] │ ├── whatshap_stats @@ -197,22 +197,22 @@ QC outputs are placed under `tumor/` for all samples, and additionally under `no │ │ ├── sample.blocklist.tsv ``` -| File | Description | -| ------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------ | -| `cramino_aln/sample_{type}_cramino.txt` | cramino QC summary statistics for the aligned bam file | -| `cramino_ubam_rep1/sample_{type}_cramino.txt` | cramino QC summary statistics for the unaligned bam files | -| `fibertoolsrs/sample_qc.txt` | fibertools QC summary for the bam file | -| `mosdepth/sample.mosdepth.global.dist.txt` | a cumulative distribution indicating the proportion of total bases that were covered for at least a given coverage value | -| `mosdepth/sample.mosdepth.summary.txt` | overall summary file from mosdepth tool | -| `nanoplot_aln/sample_{type}_aln_NanoStats.txt` | NanoPlot summary statistics for the aligned BAM file | -| `nanoplot_aln/sample_{type}_aln_NanoPlot-report.html` | NanoPlot interactive HTML report for the aligned BAM file | -| `nanoplot_ubam_rep1/sample_{type}_ubam_NanoStats.txt` | NanoPlot summary statistics for the unaligned BAM file | -| `nanoplot_ubam_rep1/sample_{type}_ubam_NanoPlot-report.html` | NanoPlot interactive HTML report for the unaligned BAM file | -| `samtools/sample.flagstat` | a summary of the counts of different samtools flags | -| `samtools/sample.idxstats` | a summary of the number of mapped and unmapped reads | -| `samtools/sample.stats` | summary statistics from the bamfile | -| `whatshap_stats/sample.stats.tsv` | WhatsHap phasing statistics per chromosome including phase block N50 and switch error rates | -| `whatshap_stats/sample.blocklist.tsv` | list of all phase blocks with their genomic coordinates | +| File | Description | +| ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | +| `cramino_aln/sample_{type}_cramino.txt` | cramino QC summary statistics for the aligned bam file | +| `cramino_ubam_rep1/sample_{type}_cramino.txt` | cramino QC summary statistics for the unaligned bam files | +| `fibertoolsrs/sample_qc.txt` | fibertools QC summary for the bam file | +| `mosdepth/sample_{type}.mosdepth.global.dist.txt` | a cumulative distribution indicating the proportion of total bases that were covered for at least a given coverage value | +| `mosdepth/sample_{type}.mosdepth.summary.txt` | overall summary file from mosdepth tool | +| `nanoplot_aln/sample_{type}_aln_NanoStats.txt` | NanoPlot summary statistics for the aligned BAM file | +| `nanoplot_aln/sample_{type}_aln_NanoPlot-report.html` | NanoPlot interactive HTML report for the aligned BAM file | +| `nanoplot_ubam_rep1/sample_{type}_rep1_ubam_NanoStats.txt` | NanoPlot summary statistics for the unaligned BAM file | +| `nanoplot_ubam_rep1/sample_{type}_rep1_ubam_NanoPlot-report.html` | NanoPlot interactive HTML report for the unaligned BAM file | +| `samtools/sample_{type}.flagstat` | a summary of the counts of different samtools flags | +| `samtools/sample_{type}.idxstats` | a summary of the number of mapped and unmapped reads | +| `samtools/sample_{type}.stats` | summary statistics from the bamfile | +| `whatshap_stats/sample.stats.tsv` | WhatsHap phasing statistics per chromosome including phase block N50 and switch error rates | +| `whatshap_stats/sample.blocklist.tsv` | list of all phase blocks with their genomic coordinates | @@ -552,6 +552,8 @@ The report is one self-contained file — plots and tables are embedded, so it c ### `multiqc` +Sample rows are named per BAM: `{sample}_tumor` and `{sample}_normal` carry the samtools, mosdepth and post-alignment NanoPlot statistics of that BAM, `{sample}_{type}_rep{N}_ubam` rows carry the pre-alignment NanoPlot statistics of each unaligned replicate, and WhatsHap phasing statistics sit on a plain `{sample}` row because phasing is done once per sample. +
Output files @@ -570,8 +572,10 @@ The report is one self-contained file — plots and tables are embedded, so it c │ │ ├── multiqc_data.json │ │ ├── multiqc_general_stats.txt │ │ ├── multiqc_software_versions.txt +│ │ ├── multiqc_nanostat.txt │ │ ├── multiqc_sources.txt │ │ ├── multiqc.log +│ │ ├── nanostat_fasta_stats_table.txt │ ├── multiqc_plots │ │ ├── pdf │ │ │ ├── mosdepth-coverage-per-contig-multi-cnt.pdf diff --git a/tests/clair_only.nf.test.snap b/tests/clair_only.nf.test.snap index 6ad17ecd..e3db716b 100644 --- a/tests/clair_only.nf.test.snap +++ b/tests/clair_only.nf.test.snap @@ -141,6 +141,7 @@ "multiqc/multiqc_data/multiqc_citations.txt", "multiqc/multiqc_data/multiqc_data.json", "multiqc/multiqc_data/multiqc_general_stats.txt", + "multiqc/multiqc_data/multiqc_nanostat.txt", "multiqc/multiqc_data/multiqc_samtools_flagstat.txt", "multiqc/multiqc_data/multiqc_samtools_idxstats.txt", "multiqc/multiqc_data/multiqc_samtools_stats.txt", @@ -148,6 +149,7 @@ "multiqc/multiqc_data/multiqc_sources.txt", "multiqc/multiqc_data/multiqc_whatshap_phased_bp_plot.txt", "multiqc/multiqc_data/multiqc_whatshap_stats.txt", + "multiqc/multiqc_data/nanostat_fasta_stats_table.txt", "multiqc/multiqc_data/samtools-flagstat-pct-table.txt", "multiqc/multiqc_data/samtools-flagstat-table.txt", "multiqc/multiqc_data/samtools-idxstats-mapped-reads-plot_Normalised_Counts.txt", @@ -162,6 +164,7 @@ "multiqc/multiqc_plots/pdf/mosdepth-coverage-per-contig-single-pct.pdf", "multiqc/multiqc_plots/pdf/mosdepth-cumcoverage-dist-id.pdf", "multiqc/multiqc_plots/pdf/multiqc_whatshap_phased_bp_plot.pdf", + "multiqc/multiqc_plots/pdf/nanostat_fasta_stats_table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-pct-table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-table.pdf", "multiqc/multiqc_plots/pdf/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.pdf", @@ -179,6 +182,7 @@ "multiqc/multiqc_plots/png/mosdepth-coverage-per-contig-single-pct.png", "multiqc/multiqc_plots/png/mosdepth-cumcoverage-dist-id.png", "multiqc/multiqc_plots/png/multiqc_whatshap_phased_bp_plot.png", + "multiqc/multiqc_plots/png/nanostat_fasta_stats_table.png", "multiqc/multiqc_plots/png/samtools-flagstat-pct-table.png", "multiqc/multiqc_plots/png/samtools-flagstat-table.png", "multiqc/multiqc_plots/png/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.png", @@ -196,6 +200,7 @@ "multiqc/multiqc_plots/svg/mosdepth-coverage-per-contig-single-pct.svg", "multiqc/multiqc_plots/svg/mosdepth-cumcoverage-dist-id.svg", "multiqc/multiqc_plots/svg/multiqc_whatshap_phased_bp_plot.svg", + "multiqc/multiqc_plots/svg/nanostat_fasta_stats_table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-pct-table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-table.svg", "multiqc/multiqc_plots/svg/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.svg", @@ -224,8 +229,8 @@ "sample1/qc/normal/cramino_ubam_rep1", "sample1/qc/normal/cramino_ubam_rep1/sample1_normal_cramino.txt", "sample1/qc/normal/mosdepth", - "sample1/qc/normal/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/normal/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.global.dist.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.summary.txt", "sample1/qc/normal/nanoplot_aln", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoPlot-report.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoStats.txt", @@ -238,25 +243,25 @@ "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_Yield_By_Length.html", "sample1/qc/normal/nanoplot_ubam_rep1", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoPlot-report.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoStats.txt", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Yield_By_Length.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoPlot-report.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoStats.txt", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Yield_By_Length.html", "sample1/qc/normal/samtools", - "sample1/qc/normal/samtools/sample1.flagstat", - "sample1/qc/normal/samtools/sample1.idxstats", - "sample1/qc/normal/samtools/sample1.stats", + "sample1/qc/normal/samtools/sample1_normal.flagstat", + "sample1/qc/normal/samtools/sample1_normal.idxstats", + "sample1/qc/normal/samtools/sample1_normal.stats", "sample1/qc/tumor", "sample1/qc/tumor/cramino_aln", "sample1/qc/tumor/cramino_aln/sample1_tumor_cramino.txt", "sample1/qc/tumor/cramino_ubam_rep1", "sample1/qc/tumor/cramino_ubam_rep1/sample1_tumor_cramino.txt", "sample1/qc/tumor/mosdepth", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.global.dist.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.summary.txt", "sample1/qc/tumor/nanoplot_aln", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoPlot-report.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoStats.txt", @@ -269,17 +274,17 @@ "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_Yield_By_Length.html", "sample1/qc/tumor/nanoplot_ubam_rep1", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoPlot-report.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoStats.txt", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Yield_By_Length.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoPlot-report.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoStats.txt", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Yield_By_Length.html", "sample1/qc/tumor/samtools", - "sample1/qc/tumor/samtools/sample1.flagstat", - "sample1/qc/tumor/samtools/sample1.idxstats", - "sample1/qc/tumor/samtools/sample1.stats", + "sample1/qc/tumor/samtools/sample1_tumor.flagstat", + "sample1/qc/tumor/samtools/sample1_tumor.idxstats", + "sample1/qc/tumor/samtools/sample1_tumor.stats", "sample1/qc/whatshap_stats", "sample1/qc/whatshap_stats/sample1_whatshap_stats.gtf", "sample1/qc/whatshap_stats/sample1_whatshap_stats.log", @@ -341,8 +346,8 @@ "sample2/qc/normal/cramino_ubam_rep1", "sample2/qc/normal/cramino_ubam_rep1/sample2_normal_cramino.txt", "sample2/qc/normal/mosdepth", - "sample2/qc/normal/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/normal/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.global.dist.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.summary.txt", "sample2/qc/normal/nanoplot_aln", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoPlot-report.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoStats.txt", @@ -355,25 +360,25 @@ "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_Yield_By_Length.html", "sample2/qc/normal/nanoplot_ubam_rep1", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoPlot-report.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoStats.txt", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Yield_By_Length.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoPlot-report.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoStats.txt", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Yield_By_Length.html", "sample2/qc/normal/samtools", - "sample2/qc/normal/samtools/sample2.flagstat", - "sample2/qc/normal/samtools/sample2.idxstats", - "sample2/qc/normal/samtools/sample2.stats", + "sample2/qc/normal/samtools/sample2_normal.flagstat", + "sample2/qc/normal/samtools/sample2_normal.idxstats", + "sample2/qc/normal/samtools/sample2_normal.stats", "sample2/qc/tumor", "sample2/qc/tumor/cramino_aln", "sample2/qc/tumor/cramino_aln/sample2_tumor_cramino.txt", "sample2/qc/tumor/cramino_ubam_rep1", "sample2/qc/tumor/cramino_ubam_rep1/sample2_tumor_cramino.txt", "sample2/qc/tumor/mosdepth", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.global.dist.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.summary.txt", "sample2/qc/tumor/nanoplot_aln", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoPlot-report.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoStats.txt", @@ -386,17 +391,17 @@ "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_Yield_By_Length.html", "sample2/qc/tumor/nanoplot_ubam_rep1", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoPlot-report.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoStats.txt", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Yield_By_Length.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoPlot-report.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoStats.txt", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Yield_By_Length.html", "sample2/qc/tumor/samtools", - "sample2/qc/tumor/samtools/sample2.flagstat", - "sample2/qc/tumor/samtools/sample2.idxstats", - "sample2/qc/tumor/samtools/sample2.stats", + "sample2/qc/tumor/samtools/sample2_tumor.flagstat", + "sample2/qc/tumor/samtools/sample2_tumor.idxstats", + "sample2/qc/tumor/samtools/sample2_tumor.stats", "sample2/qc/whatshap_stats", "sample2/qc/whatshap_stats/sample2_whatshap_stats.gtf", "sample2/qc/whatshap_stats/sample2_whatshap_stats.log", @@ -456,8 +461,8 @@ "sample3/qc/tumor/cramino_ubam_rep1", "sample3/qc/tumor/cramino_ubam_rep1/sample3_tumor_cramino.txt", "sample3/qc/tumor/mosdepth", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.global.dist.txt", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.summary.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.global.dist.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.summary.txt", "sample3/qc/tumor/nanoplot_aln", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoPlot-report.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoStats.txt", @@ -470,17 +475,17 @@ "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_Yield_By_Length.html", "sample3/qc/tumor/nanoplot_ubam_rep1", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoPlot-report.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoStats.txt", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Yield_By_Length.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoPlot-report.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoStats.txt", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Yield_By_Length.html", "sample3/qc/tumor/samtools", - "sample3/qc/tumor/samtools/sample3.flagstat", - "sample3/qc/tumor/samtools/sample3.idxstats", - "sample3/qc/tumor/samtools/sample3.stats", + "sample3/qc/tumor/samtools/sample3_tumor.flagstat", + "sample3/qc/tumor/samtools/sample3_tumor.idxstats", + "sample3/qc/tumor/samtools/sample3_tumor.stats", "sample3/qc/whatshap_stats", "sample3/qc/whatshap_stats/sample3_whatshap_stats.gtf", "sample3/qc/whatshap_stats/sample3_whatshap_stats.log", @@ -543,8 +548,8 @@ "sample4/qc/tumor/cramino_ubam_rep2", "sample4/qc/tumor/cramino_ubam_rep2/sample4_tumor_cramino.txt", "sample4/qc/tumor/mosdepth", - "sample4/qc/tumor/mosdepth/sample4.mosdepth.global.dist.txt", - "sample4/qc/tumor/mosdepth/sample4.mosdepth.summary.txt", + "sample4/qc/tumor/mosdepth/sample4_tumor.mosdepth.global.dist.txt", + "sample4/qc/tumor/mosdepth/sample4_tumor.mosdepth.summary.txt", "sample4/qc/tumor/nanoplot_aln", "sample4/qc/tumor/nanoplot_aln/sample4_tumor_aln_NanoPlot-report.html", "sample4/qc/tumor/nanoplot_aln/sample4_tumor_aln_NanoStats.txt", @@ -557,25 +562,25 @@ "sample4/qc/tumor/nanoplot_aln/sample4_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample4/qc/tumor/nanoplot_aln/sample4_tumor_aln_Yield_By_Length.html", "sample4/qc/tumor/nanoplot_ubam_rep1", - "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_ubam_NanoPlot-report.html", - "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_ubam_NanoStats.txt", - "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_ubam_WeightedHistogramReadlength.html", - "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_ubam_Yield_By_Length.html", + "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_rep1_ubam_NanoPlot-report.html", + "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_rep1_ubam_NanoStats.txt", + "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample4/qc/tumor/nanoplot_ubam_rep1/sample4_tumor_rep1_ubam_Yield_By_Length.html", "sample4/qc/tumor/nanoplot_ubam_rep2", - "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_ubam_NanoPlot-report.html", - "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_ubam_NanoStats.txt", - "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_ubam_WeightedHistogramReadlength.html", - "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_ubam_Yield_By_Length.html", + "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_rep2_ubam_NanoPlot-report.html", + "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_rep2_ubam_NanoStats.txt", + "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_rep2_ubam_Non_weightedHistogramReadlength.html", + "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_rep2_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_rep2_ubam_WeightedHistogramReadlength.html", + "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_rep2_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample4/qc/tumor/nanoplot_ubam_rep2/sample4_tumor_rep2_ubam_Yield_By_Length.html", "sample4/qc/tumor/samtools", - "sample4/qc/tumor/samtools/sample4.flagstat", - "sample4/qc/tumor/samtools/sample4.idxstats", - "sample4/qc/tumor/samtools/sample4.stats", + "sample4/qc/tumor/samtools/sample4_tumor.flagstat", + "sample4/qc/tumor/samtools/sample4_tumor.idxstats", + "sample4/qc/tumor/samtools/sample4_tumor.stats", "sample4/qc/whatshap_stats", "sample4/qc/whatshap_stats/sample4_whatshap_stats.gtf", "sample4/qc/whatshap_stats/sample4_whatshap_stats.log", @@ -636,8 +641,8 @@ "sample5/qc/tumor/cramino_ubam_rep1", "sample5/qc/tumor/cramino_ubam_rep1/sample5_tumor_cramino.txt", "sample5/qc/tumor/mosdepth", - "sample5/qc/tumor/mosdepth/sample5.mosdepth.global.dist.txt", - "sample5/qc/tumor/mosdepth/sample5.mosdepth.summary.txt", + "sample5/qc/tumor/mosdepth/sample5_tumor.mosdepth.global.dist.txt", + "sample5/qc/tumor/mosdepth/sample5_tumor.mosdepth.summary.txt", "sample5/qc/tumor/nanoplot_aln", "sample5/qc/tumor/nanoplot_aln/sample5_tumor_aln_NanoPlot-report.html", "sample5/qc/tumor/nanoplot_aln/sample5_tumor_aln_NanoStats.txt", @@ -650,17 +655,17 @@ "sample5/qc/tumor/nanoplot_aln/sample5_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample5/qc/tumor/nanoplot_aln/sample5_tumor_aln_Yield_By_Length.html", "sample5/qc/tumor/nanoplot_ubam_rep1", - "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_ubam_NanoPlot-report.html", - "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_ubam_NanoStats.txt", - "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_ubam_WeightedHistogramReadlength.html", - "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_ubam_Yield_By_Length.html", + "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_rep1_ubam_NanoPlot-report.html", + "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_rep1_ubam_NanoStats.txt", + "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample5/qc/tumor/nanoplot_ubam_rep1/sample5_tumor_rep1_ubam_Yield_By_Length.html", "sample5/qc/tumor/samtools", - "sample5/qc/tumor/samtools/sample5.flagstat", - "sample5/qc/tumor/samtools/sample5.idxstats", - "sample5/qc/tumor/samtools/sample5.stats", + "sample5/qc/tumor/samtools/sample5_tumor.flagstat", + "sample5/qc/tumor/samtools/sample5_tumor.idxstats", + "sample5/qc/tumor/samtools/sample5_tumor.stats", "sample5/qc/whatshap_stats", "sample5/qc/whatshap_stats/sample5_whatshap_stats.gtf", "sample5/qc/whatshap_stats/sample5_whatshap_stats.log", @@ -716,12 +721,12 @@ "sample1_normal.bam.bai:md5,1b501f6a11efe5d2e6f47b7f1523220b", "sample1_tumor.bam:md5,c8315c80dc92dfb5d874aef3f5dd46fb", "sample1_tumor.bam.bai:md5,bc35f807be4b93fc795a14d701469367", - "sample1.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", - "sample1.idxstats:md5,902e503387799123ea59255e3fca172c", - "sample1.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", - "sample1.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample1.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample1.stats:md5,1c60a1d249d2e503b0678c72e851ea93", + "sample1_normal.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", + "sample1_normal.idxstats:md5,902e503387799123ea59255e3fca172c", + "sample1_normal.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", + "sample1_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample1_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample1_tumor.stats:md5,1c60a1d249d2e503b0678c72e851ea93", "sample1_whatshap_stats.gtf:md5,eff050a68e36e778b06e0ec19435c569", "sample1_whatshap_stats.log:md5,76b73731f74fe32ef2d11f6bb0a0f71a", "sample1_whatshap_stats.tsv:md5,f566ae25b3c5a8f7e94b3d6c1b0417f8", @@ -735,12 +740,12 @@ "sample2_normal.bam.bai:md5,edebda44c4383173caea728acde4ac43", "sample2_tumor.bam:md5,47b2c5f86e0493ba94ff72cea77eeae3", "sample2_tumor.bam.bai:md5,abf2c290c815f54c2b3f8179f717d9bd", - "sample2.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", - "sample2.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", - "sample2.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", - "sample2.flagstat:md5,4344a8745efef9cc2a017024218d61c6", - "sample2.idxstats:md5,69467fc02c83a30084736aeea8b785fb", - "sample2.stats:md5,8635df10132c85a13f2d9878b7cf90a2", + "sample2_normal.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", + "sample2_normal.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", + "sample2_normal.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", + "sample2_tumor.flagstat:md5,4344a8745efef9cc2a017024218d61c6", + "sample2_tumor.idxstats:md5,69467fc02c83a30084736aeea8b785fb", + "sample2_tumor.stats:md5,8635df10132c85a13f2d9878b7cf90a2", "sample2_whatshap_stats.gtf:md5,4d8f4393e3aebe4e945c0b8236cf3b3e", "sample2_whatshap_stats.log:md5,10bba7bae6dd99b989ece5e5dac7a8f9", "sample2_whatshap_stats.tsv:md5,bb46226e486af9026ab76e014624e903", @@ -752,9 +757,9 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50", "sample3_tumor.bam:md5,3c995151bdd974df5bf61d08606d54d3", "sample3_tumor.bam.bai:md5,9d5964ef8f44127a7d9162d628e2407d", - "sample3.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample3.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample3.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", + "sample3_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample3_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample3_tumor.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", "sample3_whatshap_stats.gtf:md5,46a97067376b06b476d180709bc9e3d8", "sample3_whatshap_stats.log:md5,376254ec9c98f9ba204895e7085516ed", "sample3_whatshap_stats.tsv:md5,f7cc79156f23e884ead18e50b8434dbf", @@ -764,9 +769,9 @@ "read_qual.txt:md5,b918430d35354dad1d7f02f21e4cd4ed", "breakpoint_clusters.tsv:md5,d36a70de292ee130ef30da4a58bced18", "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50", - "sample4.flagstat:md5,5710382ba31b23172ca19f9407f689b4", - "sample4.idxstats:md5,3bf4793a1667f41f0b31d578f99e3955", - "sample4.stats:md5,b998982ea897721c529959e39b693ec6", + "sample4_tumor.flagstat:md5,5710382ba31b23172ca19f9407f689b4", + "sample4_tumor.idxstats:md5,3bf4793a1667f41f0b31d578f99e3955", + "sample4_tumor.stats:md5,b998982ea897721c529959e39b693ec6", "sample4_whatshap_stats.gtf:md5,9ca85642243042d3580d14a1d54b3d6a", "sample4_whatshap_stats.log:md5,b453653f5d83c4aa408862e7141f0965", "sample4_whatshap_stats.tsv:md5,8830262298440c4bd8675d1ff3f601e8", @@ -778,9 +783,9 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50", "sample5_tumor.bam:md5,e3b7a4c9d391e9ddda187d7d6bcd1403", "sample5_tumor.bam.bai:md5,d3ba11453e0eefda8d602e7b4883e82c", - "sample5.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample5.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample5.stats:md5,3f1429e9b2379bf282299d71a8c5d22c", + "sample5_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample5_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample5_tumor.stats:md5,3f1429e9b2379bf282299d71a8c5d22c", "sample5_whatshap_stats.gtf:md5,d02a3be9b50b953b32b42e2fedabc0e5", "sample5_whatshap_stats.log:md5,a2e4ed9edca8609fc947041a9fead794", "sample5_whatshap_stats.tsv:md5,860ad30057b783e24dcb41ec581c8b68", @@ -792,7 +797,7 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50" ] ], - "timestamp": "2026-09-02T10:24:40.426465897", + "timestamp": "2026-09-09T13:54:42.01587726", "meta": { "nf-test": "0.9.4", "nextflow": "26.04.3" diff --git a/tests/consensus.nf.test.snap b/tests/consensus.nf.test.snap index 2a50355a..5123680d 100644 --- a/tests/consensus.nf.test.snap +++ b/tests/consensus.nf.test.snap @@ -161,6 +161,7 @@ "multiqc/multiqc_data/multiqc_citations.txt", "multiqc/multiqc_data/multiqc_data.json", "multiqc/multiqc_data/multiqc_general_stats.txt", + "multiqc/multiqc_data/multiqc_nanostat.txt", "multiqc/multiqc_data/multiqc_samtools_flagstat.txt", "multiqc/multiqc_data/multiqc_samtools_idxstats.txt", "multiqc/multiqc_data/multiqc_samtools_stats.txt", @@ -168,6 +169,7 @@ "multiqc/multiqc_data/multiqc_sources.txt", "multiqc/multiqc_data/multiqc_whatshap_phased_bp_plot.txt", "multiqc/multiqc_data/multiqc_whatshap_stats.txt", + "multiqc/multiqc_data/nanostat_fasta_stats_table.txt", "multiqc/multiqc_data/samtools-flagstat-pct-table.txt", "multiqc/multiqc_data/samtools-flagstat-table.txt", "multiqc/multiqc_data/samtools-idxstats-mapped-reads-plot_Normalised_Counts.txt", @@ -182,6 +184,7 @@ "multiqc/multiqc_plots/pdf/mosdepth-coverage-per-contig-single-pct.pdf", "multiqc/multiqc_plots/pdf/mosdepth-cumcoverage-dist-id.pdf", "multiqc/multiqc_plots/pdf/multiqc_whatshap_phased_bp_plot.pdf", + "multiqc/multiqc_plots/pdf/nanostat_fasta_stats_table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-pct-table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-table.pdf", "multiqc/multiqc_plots/pdf/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.pdf", @@ -199,6 +202,7 @@ "multiqc/multiqc_plots/png/mosdepth-coverage-per-contig-single-pct.png", "multiqc/multiqc_plots/png/mosdepth-cumcoverage-dist-id.png", "multiqc/multiqc_plots/png/multiqc_whatshap_phased_bp_plot.png", + "multiqc/multiqc_plots/png/nanostat_fasta_stats_table.png", "multiqc/multiqc_plots/png/samtools-flagstat-pct-table.png", "multiqc/multiqc_plots/png/samtools-flagstat-table.png", "multiqc/multiqc_plots/png/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.png", @@ -216,6 +220,7 @@ "multiqc/multiqc_plots/svg/mosdepth-coverage-per-contig-single-pct.svg", "multiqc/multiqc_plots/svg/mosdepth-cumcoverage-dist-id.svg", "multiqc/multiqc_plots/svg/multiqc_whatshap_phased_bp_plot.svg", + "multiqc/multiqc_plots/svg/nanostat_fasta_stats_table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-pct-table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-table.svg", "multiqc/multiqc_plots/svg/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.svg", @@ -244,8 +249,8 @@ "sample1/qc/normal/cramino_ubam_rep1", "sample1/qc/normal/cramino_ubam_rep1/sample1_normal_cramino.txt", "sample1/qc/normal/mosdepth", - "sample1/qc/normal/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/normal/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.global.dist.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.summary.txt", "sample1/qc/normal/nanoplot_aln", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoPlot-report.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoStats.txt", @@ -258,25 +263,25 @@ "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_Yield_By_Length.html", "sample1/qc/normal/nanoplot_ubam_rep1", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoPlot-report.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoStats.txt", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Yield_By_Length.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoPlot-report.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoStats.txt", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Yield_By_Length.html", "sample1/qc/normal/samtools", - "sample1/qc/normal/samtools/sample1.flagstat", - "sample1/qc/normal/samtools/sample1.idxstats", - "sample1/qc/normal/samtools/sample1.stats", + "sample1/qc/normal/samtools/sample1_normal.flagstat", + "sample1/qc/normal/samtools/sample1_normal.idxstats", + "sample1/qc/normal/samtools/sample1_normal.stats", "sample1/qc/tumor", "sample1/qc/tumor/cramino_aln", "sample1/qc/tumor/cramino_aln/sample1_tumor_cramino.txt", "sample1/qc/tumor/cramino_ubam_rep1", "sample1/qc/tumor/cramino_ubam_rep1/sample1_tumor_cramino.txt", "sample1/qc/tumor/mosdepth", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.global.dist.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.summary.txt", "sample1/qc/tumor/nanoplot_aln", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoPlot-report.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoStats.txt", @@ -289,17 +294,17 @@ "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_Yield_By_Length.html", "sample1/qc/tumor/nanoplot_ubam_rep1", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoPlot-report.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoStats.txt", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Yield_By_Length.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoPlot-report.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoStats.txt", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Yield_By_Length.html", "sample1/qc/tumor/samtools", - "sample1/qc/tumor/samtools/sample1.flagstat", - "sample1/qc/tumor/samtools/sample1.idxstats", - "sample1/qc/tumor/samtools/sample1.stats", + "sample1/qc/tumor/samtools/sample1_tumor.flagstat", + "sample1/qc/tumor/samtools/sample1_tumor.idxstats", + "sample1/qc/tumor/samtools/sample1_tumor.stats", "sample1/qc/whatshap_stats", "sample1/qc/whatshap_stats/sample1_whatshap_stats.gtf", "sample1/qc/whatshap_stats/sample1_whatshap_stats.log", @@ -367,8 +372,8 @@ "sample2/qc/normal/cramino_ubam_rep1", "sample2/qc/normal/cramino_ubam_rep1/sample2_normal_cramino.txt", "sample2/qc/normal/mosdepth", - "sample2/qc/normal/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/normal/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.global.dist.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.summary.txt", "sample2/qc/normal/nanoplot_aln", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoPlot-report.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoStats.txt", @@ -381,25 +386,25 @@ "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_Yield_By_Length.html", "sample2/qc/normal/nanoplot_ubam_rep1", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoPlot-report.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoStats.txt", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Yield_By_Length.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoPlot-report.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoStats.txt", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Yield_By_Length.html", "sample2/qc/normal/samtools", - "sample2/qc/normal/samtools/sample2.flagstat", - "sample2/qc/normal/samtools/sample2.idxstats", - "sample2/qc/normal/samtools/sample2.stats", + "sample2/qc/normal/samtools/sample2_normal.flagstat", + "sample2/qc/normal/samtools/sample2_normal.idxstats", + "sample2/qc/normal/samtools/sample2_normal.stats", "sample2/qc/tumor", "sample2/qc/tumor/cramino_aln", "sample2/qc/tumor/cramino_aln/sample2_tumor_cramino.txt", "sample2/qc/tumor/cramino_ubam_rep1", "sample2/qc/tumor/cramino_ubam_rep1/sample2_tumor_cramino.txt", "sample2/qc/tumor/mosdepth", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.global.dist.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.summary.txt", "sample2/qc/tumor/nanoplot_aln", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoPlot-report.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoStats.txt", @@ -412,17 +417,17 @@ "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_Yield_By_Length.html", "sample2/qc/tumor/nanoplot_ubam_rep1", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoPlot-report.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoStats.txt", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Yield_By_Length.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoPlot-report.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoStats.txt", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Yield_By_Length.html", "sample2/qc/tumor/samtools", - "sample2/qc/tumor/samtools/sample2.flagstat", - "sample2/qc/tumor/samtools/sample2.idxstats", - "sample2/qc/tumor/samtools/sample2.stats", + "sample2/qc/tumor/samtools/sample2_tumor.flagstat", + "sample2/qc/tumor/samtools/sample2_tumor.idxstats", + "sample2/qc/tumor/samtools/sample2_tumor.stats", "sample2/qc/whatshap_stats", "sample2/qc/whatshap_stats/sample2_whatshap_stats.gtf", "sample2/qc/whatshap_stats/sample2_whatshap_stats.log", @@ -488,8 +493,8 @@ "sample3/qc/tumor/cramino_ubam_rep1", "sample3/qc/tumor/cramino_ubam_rep1/sample3_tumor_cramino.txt", "sample3/qc/tumor/mosdepth", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.global.dist.txt", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.summary.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.global.dist.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.summary.txt", "sample3/qc/tumor/nanoplot_aln", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoPlot-report.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoStats.txt", @@ -502,17 +507,17 @@ "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_Yield_By_Length.html", "sample3/qc/tumor/nanoplot_ubam_rep1", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoPlot-report.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoStats.txt", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Yield_By_Length.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoPlot-report.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoStats.txt", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Yield_By_Length.html", "sample3/qc/tumor/samtools", - "sample3/qc/tumor/samtools/sample3.flagstat", - "sample3/qc/tumor/samtools/sample3.idxstats", - "sample3/qc/tumor/samtools/sample3.stats", + "sample3/qc/tumor/samtools/sample3_tumor.flagstat", + "sample3/qc/tumor/samtools/sample3_tumor.idxstats", + "sample3/qc/tumor/samtools/sample3_tumor.stats", "sample3/qc/whatshap_stats", "sample3/qc/whatshap_stats/sample3_whatshap_stats.gtf", "sample3/qc/whatshap_stats/sample3_whatshap_stats.log", @@ -574,12 +579,12 @@ "sample1_normal.bam.bai:md5,75402ef1cc35229cc131155d9ec973e0", "sample1_tumor.bam:md5,69cba03cad51bcc1d1ee8c48da042527", "sample1_tumor.bam.bai:md5,5d633ed05021ad81ce24b1f18cbf38b4", - "sample1.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", - "sample1.idxstats:md5,902e503387799123ea59255e3fca172c", - "sample1.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", - "sample1.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample1.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample1.stats:md5,1c60a1d249d2e503b0678c72e851ea93", + "sample1_normal.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", + "sample1_normal.idxstats:md5,902e503387799123ea59255e3fca172c", + "sample1_normal.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", + "sample1_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample1_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample1_tumor.stats:md5,1c60a1d249d2e503b0678c72e851ea93", "sample1_whatshap_stats.gtf:md5,9f09f9ad1a788384cb8e46a933f77b3b", "sample1_whatshap_stats.log:md5,20135b4e9965a31d3f9bb0df7d2cec90", "sample1_whatshap_stats.tsv:md5,264d2d76a9b8d34ea4933aee325ce36e", @@ -593,12 +598,12 @@ "sample2_normal.bam.bai:md5,c3096f52115ec1e24c46fedc41f1f3d3", "sample2_tumor.bam:md5,1c0287d24fa5b25b86e48024f2f55031", "sample2_tumor.bam.bai:md5,62849cea5a005e3d8dbe8f9edcefaf60", - "sample2.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", - "sample2.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", - "sample2.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", - "sample2.flagstat:md5,4344a8745efef9cc2a017024218d61c6", - "sample2.idxstats:md5,69467fc02c83a30084736aeea8b785fb", - "sample2.stats:md5,8635df10132c85a13f2d9878b7cf90a2", + "sample2_normal.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", + "sample2_normal.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", + "sample2_normal.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", + "sample2_tumor.flagstat:md5,4344a8745efef9cc2a017024218d61c6", + "sample2_tumor.idxstats:md5,69467fc02c83a30084736aeea8b785fb", + "sample2_tumor.stats:md5,8635df10132c85a13f2d9878b7cf90a2", "sample2_whatshap_stats.gtf:md5,f15fb43f0af73d02fc73b66fdc12d5d8", "sample2_whatshap_stats.log:md5,ca87088fc2f11665eca3fb9c80489085", "sample2_whatshap_stats.tsv:md5,ca53f81e39bf5d46aa4f604216add1f6", @@ -610,9 +615,9 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50", "sample3_tumor.bam:md5,3c995151bdd974df5bf61d08606d54d3", "sample3_tumor.bam.bai:md5,9d5964ef8f44127a7d9162d628e2407d", - "sample3.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample3.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample3.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", + "sample3_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample3_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample3_tumor.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", "sample3_whatshap_stats.gtf:md5,46a97067376b06b476d180709bc9e3d8", "sample3_whatshap_stats.log:md5,376254ec9c98f9ba204895e7085516ed", "sample3_whatshap_stats.tsv:md5,f7cc79156f23e884ead18e50b8434dbf", @@ -624,10 +629,10 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50" ] ], + "timestamp": "2026-09-09T13:55:50.117252839", "meta": { - "nf-test": "0.9.3", - "nextflow": "26.04.1" - }, - "timestamp": "2026-06-03T11:11:45.624725561" + "nf-test": "0.9.4", + "nextflow": "26.04.3" + } } } \ No newline at end of file diff --git a/tests/deep_only.nf.test.snap b/tests/deep_only.nf.test.snap index 8acb6d4f..6a48eeaa 100644 --- a/tests/deep_only.nf.test.snap +++ b/tests/deep_only.nf.test.snap @@ -131,6 +131,7 @@ "multiqc/multiqc_data/multiqc_citations.txt", "multiqc/multiqc_data/multiqc_data.json", "multiqc/multiqc_data/multiqc_general_stats.txt", + "multiqc/multiqc_data/multiqc_nanostat.txt", "multiqc/multiqc_data/multiqc_samtools_flagstat.txt", "multiqc/multiqc_data/multiqc_samtools_idxstats.txt", "multiqc/multiqc_data/multiqc_samtools_stats.txt", @@ -138,6 +139,7 @@ "multiqc/multiqc_data/multiqc_sources.txt", "multiqc/multiqc_data/multiqc_whatshap_phased_bp_plot.txt", "multiqc/multiqc_data/multiqc_whatshap_stats.txt", + "multiqc/multiqc_data/nanostat_fasta_stats_table.txt", "multiqc/multiqc_data/samtools-flagstat-pct-table.txt", "multiqc/multiqc_data/samtools-flagstat-table.txt", "multiqc/multiqc_data/samtools-idxstats-mapped-reads-plot_Normalised_Counts.txt", @@ -152,6 +154,7 @@ "multiqc/multiqc_plots/pdf/mosdepth-coverage-per-contig-single-pct.pdf", "multiqc/multiqc_plots/pdf/mosdepth-cumcoverage-dist-id.pdf", "multiqc/multiqc_plots/pdf/multiqc_whatshap_phased_bp_plot.pdf", + "multiqc/multiqc_plots/pdf/nanostat_fasta_stats_table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-pct-table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-table.pdf", "multiqc/multiqc_plots/pdf/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.pdf", @@ -169,6 +172,7 @@ "multiqc/multiqc_plots/png/mosdepth-coverage-per-contig-single-pct.png", "multiqc/multiqc_plots/png/mosdepth-cumcoverage-dist-id.png", "multiqc/multiqc_plots/png/multiqc_whatshap_phased_bp_plot.png", + "multiqc/multiqc_plots/png/nanostat_fasta_stats_table.png", "multiqc/multiqc_plots/png/samtools-flagstat-pct-table.png", "multiqc/multiqc_plots/png/samtools-flagstat-table.png", "multiqc/multiqc_plots/png/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.png", @@ -186,6 +190,7 @@ "multiqc/multiqc_plots/svg/mosdepth-coverage-per-contig-single-pct.svg", "multiqc/multiqc_plots/svg/mosdepth-cumcoverage-dist-id.svg", "multiqc/multiqc_plots/svg/multiqc_whatshap_phased_bp_plot.svg", + "multiqc/multiqc_plots/svg/nanostat_fasta_stats_table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-pct-table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-table.svg", "multiqc/multiqc_plots/svg/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.svg", @@ -214,8 +219,8 @@ "sample1/qc/normal/cramino_ubam_rep1", "sample1/qc/normal/cramino_ubam_rep1/sample1_normal_cramino.txt", "sample1/qc/normal/mosdepth", - "sample1/qc/normal/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/normal/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.global.dist.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.summary.txt", "sample1/qc/normal/nanoplot_aln", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoPlot-report.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoStats.txt", @@ -228,25 +233,25 @@ "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_Yield_By_Length.html", "sample1/qc/normal/nanoplot_ubam_rep1", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoPlot-report.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoStats.txt", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Yield_By_Length.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoPlot-report.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoStats.txt", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Yield_By_Length.html", "sample1/qc/normal/samtools", - "sample1/qc/normal/samtools/sample1.flagstat", - "sample1/qc/normal/samtools/sample1.idxstats", - "sample1/qc/normal/samtools/sample1.stats", + "sample1/qc/normal/samtools/sample1_normal.flagstat", + "sample1/qc/normal/samtools/sample1_normal.idxstats", + "sample1/qc/normal/samtools/sample1_normal.stats", "sample1/qc/tumor", "sample1/qc/tumor/cramino_aln", "sample1/qc/tumor/cramino_aln/sample1_tumor_cramino.txt", "sample1/qc/tumor/cramino_ubam_rep1", "sample1/qc/tumor/cramino_ubam_rep1/sample1_tumor_cramino.txt", "sample1/qc/tumor/mosdepth", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.global.dist.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.summary.txt", "sample1/qc/tumor/nanoplot_aln", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoPlot-report.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoStats.txt", @@ -259,17 +264,17 @@ "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_Yield_By_Length.html", "sample1/qc/tumor/nanoplot_ubam_rep1", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoPlot-report.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoStats.txt", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Yield_By_Length.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoPlot-report.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoStats.txt", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Yield_By_Length.html", "sample1/qc/tumor/samtools", - "sample1/qc/tumor/samtools/sample1.flagstat", - "sample1/qc/tumor/samtools/sample1.idxstats", - "sample1/qc/tumor/samtools/sample1.stats", + "sample1/qc/tumor/samtools/sample1_tumor.flagstat", + "sample1/qc/tumor/samtools/sample1_tumor.idxstats", + "sample1/qc/tumor/samtools/sample1_tumor.stats", "sample1/qc/whatshap_stats", "sample1/qc/whatshap_stats/sample1_whatshap_stats.gtf", "sample1/qc/whatshap_stats/sample1_whatshap_stats.log", @@ -329,8 +334,8 @@ "sample2/qc/normal/cramino_ubam_rep1", "sample2/qc/normal/cramino_ubam_rep1/sample2_normal_cramino.txt", "sample2/qc/normal/mosdepth", - "sample2/qc/normal/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/normal/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.global.dist.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.summary.txt", "sample2/qc/normal/nanoplot_aln", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoPlot-report.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoStats.txt", @@ -343,25 +348,25 @@ "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_Yield_By_Length.html", "sample2/qc/normal/nanoplot_ubam_rep1", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoPlot-report.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoStats.txt", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Yield_By_Length.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoPlot-report.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoStats.txt", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Yield_By_Length.html", "sample2/qc/normal/samtools", - "sample2/qc/normal/samtools/sample2.flagstat", - "sample2/qc/normal/samtools/sample2.idxstats", - "sample2/qc/normal/samtools/sample2.stats", + "sample2/qc/normal/samtools/sample2_normal.flagstat", + "sample2/qc/normal/samtools/sample2_normal.idxstats", + "sample2/qc/normal/samtools/sample2_normal.stats", "sample2/qc/tumor", "sample2/qc/tumor/cramino_aln", "sample2/qc/tumor/cramino_aln/sample2_tumor_cramino.txt", "sample2/qc/tumor/cramino_ubam_rep1", "sample2/qc/tumor/cramino_ubam_rep1/sample2_tumor_cramino.txt", "sample2/qc/tumor/mosdepth", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.global.dist.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.summary.txt", "sample2/qc/tumor/nanoplot_aln", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoPlot-report.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoStats.txt", @@ -374,17 +379,17 @@ "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_Yield_By_Length.html", "sample2/qc/tumor/nanoplot_ubam_rep1", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoPlot-report.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoStats.txt", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Yield_By_Length.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoPlot-report.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoStats.txt", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Yield_By_Length.html", "sample2/qc/tumor/samtools", - "sample2/qc/tumor/samtools/sample2.flagstat", - "sample2/qc/tumor/samtools/sample2.idxstats", - "sample2/qc/tumor/samtools/sample2.stats", + "sample2/qc/tumor/samtools/sample2_tumor.flagstat", + "sample2/qc/tumor/samtools/sample2_tumor.idxstats", + "sample2/qc/tumor/samtools/sample2_tumor.stats", "sample2/qc/whatshap_stats", "sample2/qc/whatshap_stats/sample2_whatshap_stats.gtf", "sample2/qc/whatshap_stats/sample2_whatshap_stats.log", @@ -442,8 +447,8 @@ "sample3/qc/tumor/cramino_ubam_rep1", "sample3/qc/tumor/cramino_ubam_rep1/sample3_tumor_cramino.txt", "sample3/qc/tumor/mosdepth", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.global.dist.txt", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.summary.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.global.dist.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.summary.txt", "sample3/qc/tumor/nanoplot_aln", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoPlot-report.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoStats.txt", @@ -456,17 +461,17 @@ "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_Yield_By_Length.html", "sample3/qc/tumor/nanoplot_ubam_rep1", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoPlot-report.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoStats.txt", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Yield_By_Length.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoPlot-report.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoStats.txt", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Yield_By_Length.html", "sample3/qc/tumor/samtools", - "sample3/qc/tumor/samtools/sample3.flagstat", - "sample3/qc/tumor/samtools/sample3.idxstats", - "sample3/qc/tumor/samtools/sample3.stats", + "sample3/qc/tumor/samtools/sample3_tumor.flagstat", + "sample3/qc/tumor/samtools/sample3_tumor.idxstats", + "sample3/qc/tumor/samtools/sample3_tumor.stats", "sample3/qc/whatshap_stats", "sample3/qc/whatshap_stats/sample3_whatshap_stats.gtf", "sample3/qc/whatshap_stats/sample3_whatshap_stats.log", @@ -519,12 +524,12 @@ "sample1_normal.bam.bai:md5,ddb44b5bfb0f798950d8872e9d60d784", "sample1_tumor.bam:md5,8173a435625724d6192ff6a0e9e737bb", "sample1_tumor.bam.bai:md5,1de9940795d293f650a22c6983b2a072", - "sample1.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", - "sample1.idxstats:md5,902e503387799123ea59255e3fca172c", - "sample1.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", - "sample1.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample1.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample1.stats:md5,1c60a1d249d2e503b0678c72e851ea93", + "sample1_normal.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", + "sample1_normal.idxstats:md5,902e503387799123ea59255e3fca172c", + "sample1_normal.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", + "sample1_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample1_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample1_tumor.stats:md5,1c60a1d249d2e503b0678c72e851ea93", "sample1_whatshap_stats.gtf:md5,e1d0e87353a5f9aed8a9ac4bf7973427", "sample1_whatshap_stats.log:md5,bd6b83a062e22cd3201523dc4c2c13e7", "sample1_whatshap_stats.tsv:md5,7a1508751cb1daa841a577ae25f55586", @@ -538,12 +543,12 @@ "sample2_normal.bam.bai:md5,02a12e347af31e04ffa589935f89e5ed", "sample2_tumor.bam:md5,7380c09f2ee3ebe328f1a50671408209", "sample2_tumor.bam.bai:md5,644083528fd153b24d97ef687417e089", - "sample2.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", - "sample2.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", - "sample2.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", - "sample2.flagstat:md5,4344a8745efef9cc2a017024218d61c6", - "sample2.idxstats:md5,69467fc02c83a30084736aeea8b785fb", - "sample2.stats:md5,8635df10132c85a13f2d9878b7cf90a2", + "sample2_normal.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", + "sample2_normal.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", + "sample2_normal.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", + "sample2_tumor.flagstat:md5,4344a8745efef9cc2a017024218d61c6", + "sample2_tumor.idxstats:md5,69467fc02c83a30084736aeea8b785fb", + "sample2_tumor.stats:md5,8635df10132c85a13f2d9878b7cf90a2", "sample2_whatshap_stats.gtf:md5,af33281699a1d0da83fbe7eaff198d03", "sample2_whatshap_stats.log:md5,bbd9ab2ce07a009d9348a1d78bc6fc70", "sample2_whatshap_stats.tsv:md5,c65436f930c23ddbfd568532d07dce70", @@ -555,9 +560,9 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50", "sample3_tumor.bam:md5,965264ef8436cb887ad02c92d40fb50e", "sample3_tumor.bam.bai:md5,cfc6329667a3c6c66e3c0ca0ace4c6e9", - "sample3.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample3.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample3.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", + "sample3_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample3_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample3_tumor.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", "sample3_whatshap_stats.gtf:md5,f47156e18c490ff9a4e6efd04d43acc5", "sample3_whatshap_stats.log:md5,4f7648e763004ab764143cb4f8b6499e", "sample3_whatshap_stats.tsv:md5,4cb58bb3b663aaba23da004d69adab3e", @@ -569,10 +574,10 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50" ] ], + "timestamp": "2026-09-09T13:51:30.278291697", "meta": { - "nf-test": "0.9.3", - "nextflow": "26.04.1" - }, - "timestamp": "2026-06-03T11:16:31.519039247" + "nf-test": "0.9.4", + "nextflow": "26.04.3" + } } } \ No newline at end of file diff --git a/tests/default.nf.test.snap b/tests/default.nf.test.snap index b9c829c5..47b61a3f 100644 --- a/tests/default.nf.test.snap +++ b/tests/default.nf.test.snap @@ -125,6 +125,7 @@ "multiqc/multiqc_data/multiqc_citations.txt", "multiqc/multiqc_data/multiqc_data.json", "multiqc/multiqc_data/multiqc_general_stats.txt", + "multiqc/multiqc_data/multiqc_nanostat.txt", "multiqc/multiqc_data/multiqc_samtools_flagstat.txt", "multiqc/multiqc_data/multiqc_samtools_idxstats.txt", "multiqc/multiqc_data/multiqc_samtools_stats.txt", @@ -132,6 +133,7 @@ "multiqc/multiqc_data/multiqc_sources.txt", "multiqc/multiqc_data/multiqc_whatshap_phased_bp_plot.txt", "multiqc/multiqc_data/multiqc_whatshap_stats.txt", + "multiqc/multiqc_data/nanostat_fasta_stats_table.txt", "multiqc/multiqc_data/samtools-flagstat-pct-table.txt", "multiqc/multiqc_data/samtools-flagstat-table.txt", "multiqc/multiqc_data/samtools-idxstats-mapped-reads-plot_Normalised_Counts.txt", @@ -146,6 +148,7 @@ "multiqc/multiqc_plots/pdf/mosdepth-coverage-per-contig-single-pct.pdf", "multiqc/multiqc_plots/pdf/mosdepth-cumcoverage-dist-id.pdf", "multiqc/multiqc_plots/pdf/multiqc_whatshap_phased_bp_plot.pdf", + "multiqc/multiqc_plots/pdf/nanostat_fasta_stats_table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-pct-table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-table.pdf", "multiqc/multiqc_plots/pdf/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.pdf", @@ -163,6 +166,7 @@ "multiqc/multiqc_plots/png/mosdepth-coverage-per-contig-single-pct.png", "multiqc/multiqc_plots/png/mosdepth-cumcoverage-dist-id.png", "multiqc/multiqc_plots/png/multiqc_whatshap_phased_bp_plot.png", + "multiqc/multiqc_plots/png/nanostat_fasta_stats_table.png", "multiqc/multiqc_plots/png/samtools-flagstat-pct-table.png", "multiqc/multiqc_plots/png/samtools-flagstat-table.png", "multiqc/multiqc_plots/png/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.png", @@ -180,6 +184,7 @@ "multiqc/multiqc_plots/svg/mosdepth-coverage-per-contig-single-pct.svg", "multiqc/multiqc_plots/svg/mosdepth-cumcoverage-dist-id.svg", "multiqc/multiqc_plots/svg/multiqc_whatshap_phased_bp_plot.svg", + "multiqc/multiqc_plots/svg/nanostat_fasta_stats_table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-pct-table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-table.svg", "multiqc/multiqc_plots/svg/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.svg", @@ -208,8 +213,8 @@ "sample1/qc/normal/cramino_ubam_rep1", "sample1/qc/normal/cramino_ubam_rep1/sample1_normal_cramino.txt", "sample1/qc/normal/mosdepth", - "sample1/qc/normal/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/normal/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.global.dist.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.summary.txt", "sample1/qc/normal/nanoplot_aln", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoPlot-report.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoStats.txt", @@ -222,25 +227,25 @@ "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_Yield_By_Length.html", "sample1/qc/normal/nanoplot_ubam_rep1", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoPlot-report.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoStats.txt", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Yield_By_Length.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoPlot-report.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoStats.txt", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Yield_By_Length.html", "sample1/qc/normal/samtools", - "sample1/qc/normal/samtools/sample1.flagstat", - "sample1/qc/normal/samtools/sample1.idxstats", - "sample1/qc/normal/samtools/sample1.stats", + "sample1/qc/normal/samtools/sample1_normal.flagstat", + "sample1/qc/normal/samtools/sample1_normal.idxstats", + "sample1/qc/normal/samtools/sample1_normal.stats", "sample1/qc/tumor", "sample1/qc/tumor/cramino_aln", "sample1/qc/tumor/cramino_aln/sample1_tumor_cramino.txt", "sample1/qc/tumor/cramino_ubam_rep1", "sample1/qc/tumor/cramino_ubam_rep1/sample1_tumor_cramino.txt", "sample1/qc/tumor/mosdepth", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.global.dist.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.summary.txt", "sample1/qc/tumor/nanoplot_aln", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoPlot-report.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoStats.txt", @@ -253,17 +258,17 @@ "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_Yield_By_Length.html", "sample1/qc/tumor/nanoplot_ubam_rep1", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoPlot-report.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoStats.txt", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Yield_By_Length.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoPlot-report.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoStats.txt", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Yield_By_Length.html", "sample1/qc/tumor/samtools", - "sample1/qc/tumor/samtools/sample1.flagstat", - "sample1/qc/tumor/samtools/sample1.idxstats", - "sample1/qc/tumor/samtools/sample1.stats", + "sample1/qc/tumor/samtools/sample1_tumor.flagstat", + "sample1/qc/tumor/samtools/sample1_tumor.idxstats", + "sample1/qc/tumor/samtools/sample1_tumor.stats", "sample1/qc/whatshap_stats", "sample1/qc/whatshap_stats/sample1_whatshap_stats.gtf", "sample1/qc/whatshap_stats/sample1_whatshap_stats.log", @@ -325,8 +330,8 @@ "sample2/qc/normal/cramino_ubam_rep1", "sample2/qc/normal/cramino_ubam_rep1/sample2_normal_cramino.txt", "sample2/qc/normal/mosdepth", - "sample2/qc/normal/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/normal/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.global.dist.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.summary.txt", "sample2/qc/normal/nanoplot_aln", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoPlot-report.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoStats.txt", @@ -339,25 +344,25 @@ "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_Yield_By_Length.html", "sample2/qc/normal/nanoplot_ubam_rep1", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoPlot-report.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoStats.txt", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Yield_By_Length.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoPlot-report.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoStats.txt", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Yield_By_Length.html", "sample2/qc/normal/samtools", - "sample2/qc/normal/samtools/sample2.flagstat", - "sample2/qc/normal/samtools/sample2.idxstats", - "sample2/qc/normal/samtools/sample2.stats", + "sample2/qc/normal/samtools/sample2_normal.flagstat", + "sample2/qc/normal/samtools/sample2_normal.idxstats", + "sample2/qc/normal/samtools/sample2_normal.stats", "sample2/qc/tumor", "sample2/qc/tumor/cramino_aln", "sample2/qc/tumor/cramino_aln/sample2_tumor_cramino.txt", "sample2/qc/tumor/cramino_ubam_rep1", "sample2/qc/tumor/cramino_ubam_rep1/sample2_tumor_cramino.txt", "sample2/qc/tumor/mosdepth", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.global.dist.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.summary.txt", "sample2/qc/tumor/nanoplot_aln", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoPlot-report.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoStats.txt", @@ -370,17 +375,17 @@ "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_Yield_By_Length.html", "sample2/qc/tumor/nanoplot_ubam_rep1", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoPlot-report.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoStats.txt", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Yield_By_Length.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoPlot-report.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoStats.txt", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Yield_By_Length.html", "sample2/qc/tumor/samtools", - "sample2/qc/tumor/samtools/sample2.flagstat", - "sample2/qc/tumor/samtools/sample2.idxstats", - "sample2/qc/tumor/samtools/sample2.stats", + "sample2/qc/tumor/samtools/sample2_tumor.flagstat", + "sample2/qc/tumor/samtools/sample2_tumor.idxstats", + "sample2/qc/tumor/samtools/sample2_tumor.stats", "sample2/qc/whatshap_stats", "sample2/qc/whatshap_stats/sample2_whatshap_stats.gtf", "sample2/qc/whatshap_stats/sample2_whatshap_stats.log", @@ -440,8 +445,8 @@ "sample3/qc/tumor/cramino_ubam_rep1", "sample3/qc/tumor/cramino_ubam_rep1/sample3_tumor_cramino.txt", "sample3/qc/tumor/mosdepth", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.global.dist.txt", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.summary.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.global.dist.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.summary.txt", "sample3/qc/tumor/nanoplot_aln", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoPlot-report.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoStats.txt", @@ -454,17 +459,17 @@ "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_Yield_By_Length.html", "sample3/qc/tumor/nanoplot_ubam_rep1", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoPlot-report.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoStats.txt", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Yield_By_Length.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoPlot-report.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoStats.txt", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Yield_By_Length.html", "sample3/qc/tumor/samtools", - "sample3/qc/tumor/samtools/sample3.flagstat", - "sample3/qc/tumor/samtools/sample3.idxstats", - "sample3/qc/tumor/samtools/sample3.stats", + "sample3/qc/tumor/samtools/sample3_tumor.flagstat", + "sample3/qc/tumor/samtools/sample3_tumor.idxstats", + "sample3/qc/tumor/samtools/sample3_tumor.stats", "sample3/qc/whatshap_stats", "sample3/qc/whatshap_stats/sample3_whatshap_stats.gtf", "sample3/qc/whatshap_stats/sample3_whatshap_stats.log", @@ -520,12 +525,12 @@ "sample1_normal.bam.bai:md5,1b501f6a11efe5d2e6f47b7f1523220b", "sample1_tumor.bam:md5,c8315c80dc92dfb5d874aef3f5dd46fb", "sample1_tumor.bam.bai:md5,bc35f807be4b93fc795a14d701469367", - "sample1.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", - "sample1.idxstats:md5,902e503387799123ea59255e3fca172c", - "sample1.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", - "sample1.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample1.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample1.stats:md5,1c60a1d249d2e503b0678c72e851ea93", + "sample1_normal.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", + "sample1_normal.idxstats:md5,902e503387799123ea59255e3fca172c", + "sample1_normal.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", + "sample1_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample1_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample1_tumor.stats:md5,1c60a1d249d2e503b0678c72e851ea93", "sample1_whatshap_stats.gtf:md5,eff050a68e36e778b06e0ec19435c569", "sample1_whatshap_stats.log:md5,76b73731f74fe32ef2d11f6bb0a0f71a", "sample1_whatshap_stats.tsv:md5,f566ae25b3c5a8f7e94b3d6c1b0417f8", @@ -539,12 +544,12 @@ "sample2_normal.bam.bai:md5,edebda44c4383173caea728acde4ac43", "sample2_tumor.bam:md5,47b2c5f86e0493ba94ff72cea77eeae3", "sample2_tumor.bam.bai:md5,abf2c290c815f54c2b3f8179f717d9bd", - "sample2.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", - "sample2.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", - "sample2.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", - "sample2.flagstat:md5,4344a8745efef9cc2a017024218d61c6", - "sample2.idxstats:md5,69467fc02c83a30084736aeea8b785fb", - "sample2.stats:md5,8635df10132c85a13f2d9878b7cf90a2", + "sample2_normal.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", + "sample2_normal.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", + "sample2_normal.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", + "sample2_tumor.flagstat:md5,4344a8745efef9cc2a017024218d61c6", + "sample2_tumor.idxstats:md5,69467fc02c83a30084736aeea8b785fb", + "sample2_tumor.stats:md5,8635df10132c85a13f2d9878b7cf90a2", "sample2_whatshap_stats.gtf:md5,4d8f4393e3aebe4e945c0b8236cf3b3e", "sample2_whatshap_stats.log:md5,10bba7bae6dd99b989ece5e5dac7a8f9", "sample2_whatshap_stats.tsv:md5,bb46226e486af9026ab76e014624e903", @@ -556,9 +561,9 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50", "sample3_tumor.bam:md5,3c995151bdd974df5bf61d08606d54d3", "sample3_tumor.bam.bai:md5,9d5964ef8f44127a7d9162d628e2407d", - "sample3.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample3.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample3.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", + "sample3_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample3_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample3_tumor.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", "sample3_whatshap_stats.gtf:md5,46a97067376b06b476d180709bc9e3d8", "sample3_whatshap_stats.log:md5,376254ec9c98f9ba204895e7085516ed", "sample3_whatshap_stats.tsv:md5,f7cc79156f23e884ead18e50b8434dbf", @@ -570,7 +575,7 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50" ] ], - "timestamp": "2026-07-16T19:16:20.692019944", + "timestamp": "2026-09-09T13:50:22.195327407", "meta": { "nf-test": "0.9.4", "nextflow": "26.04.3" diff --git a/tests/union.nf.test.snap b/tests/union.nf.test.snap index d7753bf9..08d81773 100644 --- a/tests/union.nf.test.snap +++ b/tests/union.nf.test.snap @@ -161,6 +161,7 @@ "multiqc/multiqc_data/multiqc_citations.txt", "multiqc/multiqc_data/multiqc_data.json", "multiqc/multiqc_data/multiqc_general_stats.txt", + "multiqc/multiqc_data/multiqc_nanostat.txt", "multiqc/multiqc_data/multiqc_samtools_flagstat.txt", "multiqc/multiqc_data/multiqc_samtools_idxstats.txt", "multiqc/multiqc_data/multiqc_samtools_stats.txt", @@ -168,6 +169,7 @@ "multiqc/multiqc_data/multiqc_sources.txt", "multiqc/multiqc_data/multiqc_whatshap_phased_bp_plot.txt", "multiqc/multiqc_data/multiqc_whatshap_stats.txt", + "multiqc/multiqc_data/nanostat_fasta_stats_table.txt", "multiqc/multiqc_data/samtools-flagstat-pct-table.txt", "multiqc/multiqc_data/samtools-flagstat-table.txt", "multiqc/multiqc_data/samtools-idxstats-mapped-reads-plot_Normalised_Counts.txt", @@ -182,6 +184,7 @@ "multiqc/multiqc_plots/pdf/mosdepth-coverage-per-contig-single-pct.pdf", "multiqc/multiqc_plots/pdf/mosdepth-cumcoverage-dist-id.pdf", "multiqc/multiqc_plots/pdf/multiqc_whatshap_phased_bp_plot.pdf", + "multiqc/multiqc_plots/pdf/nanostat_fasta_stats_table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-pct-table.pdf", "multiqc/multiqc_plots/pdf/samtools-flagstat-table.pdf", "multiqc/multiqc_plots/pdf/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.pdf", @@ -199,6 +202,7 @@ "multiqc/multiqc_plots/png/mosdepth-coverage-per-contig-single-pct.png", "multiqc/multiqc_plots/png/mosdepth-cumcoverage-dist-id.png", "multiqc/multiqc_plots/png/multiqc_whatshap_phased_bp_plot.png", + "multiqc/multiqc_plots/png/nanostat_fasta_stats_table.png", "multiqc/multiqc_plots/png/samtools-flagstat-pct-table.png", "multiqc/multiqc_plots/png/samtools-flagstat-table.png", "multiqc/multiqc_plots/png/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.png", @@ -216,6 +220,7 @@ "multiqc/multiqc_plots/svg/mosdepth-coverage-per-contig-single-pct.svg", "multiqc/multiqc_plots/svg/mosdepth-cumcoverage-dist-id.svg", "multiqc/multiqc_plots/svg/multiqc_whatshap_phased_bp_plot.svg", + "multiqc/multiqc_plots/svg/nanostat_fasta_stats_table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-pct-table.svg", "multiqc/multiqc_plots/svg/samtools-flagstat-table.svg", "multiqc/multiqc_plots/svg/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.svg", @@ -244,8 +249,8 @@ "sample1/qc/normal/cramino_ubam_rep1", "sample1/qc/normal/cramino_ubam_rep1/sample1_normal_cramino.txt", "sample1/qc/normal/mosdepth", - "sample1/qc/normal/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/normal/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.global.dist.txt", + "sample1/qc/normal/mosdepth/sample1_normal.mosdepth.summary.txt", "sample1/qc/normal/nanoplot_aln", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoPlot-report.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_NanoStats.txt", @@ -258,25 +263,25 @@ "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/normal/nanoplot_aln/sample1_normal_aln_Yield_By_Length.html", "sample1/qc/normal/nanoplot_ubam_rep1", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoPlot-report.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_NanoStats.txt", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedHistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_ubam_Yield_By_Length.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoPlot-report.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_NanoStats.txt", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/normal/nanoplot_ubam_rep1/sample1_normal_rep1_ubam_Yield_By_Length.html", "sample1/qc/normal/samtools", - "sample1/qc/normal/samtools/sample1.flagstat", - "sample1/qc/normal/samtools/sample1.idxstats", - "sample1/qc/normal/samtools/sample1.stats", + "sample1/qc/normal/samtools/sample1_normal.flagstat", + "sample1/qc/normal/samtools/sample1_normal.idxstats", + "sample1/qc/normal/samtools/sample1_normal.stats", "sample1/qc/tumor", "sample1/qc/tumor/cramino_aln", "sample1/qc/tumor/cramino_aln/sample1_tumor_cramino.txt", "sample1/qc/tumor/cramino_ubam_rep1", "sample1/qc/tumor/cramino_ubam_rep1/sample1_tumor_cramino.txt", "sample1/qc/tumor/mosdepth", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.global.dist.txt", - "sample1/qc/tumor/mosdepth/sample1.mosdepth.summary.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.global.dist.txt", + "sample1/qc/tumor/mosdepth/sample1_tumor.mosdepth.summary.txt", "sample1/qc/tumor/nanoplot_aln", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoPlot-report.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_NanoStats.txt", @@ -289,17 +294,17 @@ "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample1/qc/tumor/nanoplot_aln/sample1_tumor_aln_Yield_By_Length.html", "sample1/qc/tumor/nanoplot_ubam_rep1", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoPlot-report.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_NanoStats.txt", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedHistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_ubam_Yield_By_Length.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoPlot-report.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_NanoStats.txt", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample1/qc/tumor/nanoplot_ubam_rep1/sample1_tumor_rep1_ubam_Yield_By_Length.html", "sample1/qc/tumor/samtools", - "sample1/qc/tumor/samtools/sample1.flagstat", - "sample1/qc/tumor/samtools/sample1.idxstats", - "sample1/qc/tumor/samtools/sample1.stats", + "sample1/qc/tumor/samtools/sample1_tumor.flagstat", + "sample1/qc/tumor/samtools/sample1_tumor.idxstats", + "sample1/qc/tumor/samtools/sample1_tumor.stats", "sample1/qc/whatshap_stats", "sample1/qc/whatshap_stats/sample1_whatshap_stats.gtf", "sample1/qc/whatshap_stats/sample1_whatshap_stats.log", @@ -367,8 +372,8 @@ "sample2/qc/normal/cramino_ubam_rep1", "sample2/qc/normal/cramino_ubam_rep1/sample2_normal_cramino.txt", "sample2/qc/normal/mosdepth", - "sample2/qc/normal/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/normal/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.global.dist.txt", + "sample2/qc/normal/mosdepth/sample2_normal.mosdepth.summary.txt", "sample2/qc/normal/nanoplot_aln", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoPlot-report.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_NanoStats.txt", @@ -381,25 +386,25 @@ "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/normal/nanoplot_aln/sample2_normal_aln_Yield_By_Length.html", "sample2/qc/normal/nanoplot_ubam_rep1", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoPlot-report.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_NanoStats.txt", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedHistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_ubam_Yield_By_Length.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoPlot-report.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_NanoStats.txt", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/normal/nanoplot_ubam_rep1/sample2_normal_rep1_ubam_Yield_By_Length.html", "sample2/qc/normal/samtools", - "sample2/qc/normal/samtools/sample2.flagstat", - "sample2/qc/normal/samtools/sample2.idxstats", - "sample2/qc/normal/samtools/sample2.stats", + "sample2/qc/normal/samtools/sample2_normal.flagstat", + "sample2/qc/normal/samtools/sample2_normal.idxstats", + "sample2/qc/normal/samtools/sample2_normal.stats", "sample2/qc/tumor", "sample2/qc/tumor/cramino_aln", "sample2/qc/tumor/cramino_aln/sample2_tumor_cramino.txt", "sample2/qc/tumor/cramino_ubam_rep1", "sample2/qc/tumor/cramino_ubam_rep1/sample2_tumor_cramino.txt", "sample2/qc/tumor/mosdepth", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.global.dist.txt", - "sample2/qc/tumor/mosdepth/sample2.mosdepth.summary.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.global.dist.txt", + "sample2/qc/tumor/mosdepth/sample2_tumor.mosdepth.summary.txt", "sample2/qc/tumor/nanoplot_aln", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoPlot-report.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_NanoStats.txt", @@ -412,17 +417,17 @@ "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample2/qc/tumor/nanoplot_aln/sample2_tumor_aln_Yield_By_Length.html", "sample2/qc/tumor/nanoplot_ubam_rep1", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoPlot-report.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_NanoStats.txt", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedHistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_ubam_Yield_By_Length.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoPlot-report.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_NanoStats.txt", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample2/qc/tumor/nanoplot_ubam_rep1/sample2_tumor_rep1_ubam_Yield_By_Length.html", "sample2/qc/tumor/samtools", - "sample2/qc/tumor/samtools/sample2.flagstat", - "sample2/qc/tumor/samtools/sample2.idxstats", - "sample2/qc/tumor/samtools/sample2.stats", + "sample2/qc/tumor/samtools/sample2_tumor.flagstat", + "sample2/qc/tumor/samtools/sample2_tumor.idxstats", + "sample2/qc/tumor/samtools/sample2_tumor.stats", "sample2/qc/whatshap_stats", "sample2/qc/whatshap_stats/sample2_whatshap_stats.gtf", "sample2/qc/whatshap_stats/sample2_whatshap_stats.log", @@ -488,8 +493,8 @@ "sample3/qc/tumor/cramino_ubam_rep1", "sample3/qc/tumor/cramino_ubam_rep1/sample3_tumor_cramino.txt", "sample3/qc/tumor/mosdepth", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.global.dist.txt", - "sample3/qc/tumor/mosdepth/sample3.mosdepth.summary.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.global.dist.txt", + "sample3/qc/tumor/mosdepth/sample3_tumor.mosdepth.summary.txt", "sample3/qc/tumor/nanoplot_aln", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoPlot-report.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_NanoStats.txt", @@ -502,17 +507,17 @@ "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_WeightedLogTransformed_HistogramReadlength.html", "sample3/qc/tumor/nanoplot_aln/sample3_tumor_aln_Yield_By_Length.html", "sample3/qc/tumor/nanoplot_ubam_rep1", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoPlot-report.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_NanoStats.txt", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Non_weightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedHistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_WeightedLogTransformed_HistogramReadlength.html", - "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_ubam_Yield_By_Length.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoPlot-report.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_NanoStats.txt", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Non_weightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedHistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_WeightedLogTransformed_HistogramReadlength.html", + "sample3/qc/tumor/nanoplot_ubam_rep1/sample3_tumor_rep1_ubam_Yield_By_Length.html", "sample3/qc/tumor/samtools", - "sample3/qc/tumor/samtools/sample3.flagstat", - "sample3/qc/tumor/samtools/sample3.idxstats", - "sample3/qc/tumor/samtools/sample3.stats", + "sample3/qc/tumor/samtools/sample3_tumor.flagstat", + "sample3/qc/tumor/samtools/sample3_tumor.idxstats", + "sample3/qc/tumor/samtools/sample3_tumor.stats", "sample3/qc/whatshap_stats", "sample3/qc/whatshap_stats/sample3_whatshap_stats.gtf", "sample3/qc/whatshap_stats/sample3_whatshap_stats.log", @@ -574,12 +579,12 @@ "sample1_normal.bam.bai:md5,c1498328929d45b2898fa2265b0d617c", "sample1_tumor.bam:md5,b78866edf991393806d37505d16f7e3d", "sample1_tumor.bam.bai:md5,f613de14ab19fc3a85403661a4f6188c", - "sample1.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", - "sample1.idxstats:md5,902e503387799123ea59255e3fca172c", - "sample1.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", - "sample1.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample1.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample1.stats:md5,1c60a1d249d2e503b0678c72e851ea93", + "sample1_normal.flagstat:md5,1c41ea9923945501eb7e41f83a90502d", + "sample1_normal.idxstats:md5,902e503387799123ea59255e3fca172c", + "sample1_normal.stats:md5,a8b3fba9c54efbc0934d6eacc1807140", + "sample1_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample1_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample1_tumor.stats:md5,1c60a1d249d2e503b0678c72e851ea93", "sample1_whatshap_stats.gtf:md5,9ae556e13516dd47d4108acf2104bddb", "sample1_whatshap_stats.log:md5,eaddcf6a1666d4a3c1ad3316dac24139", "sample1_whatshap_stats.tsv:md5,c2773e011c2781160fd9a7741b10546b", @@ -593,12 +598,12 @@ "sample2_normal.bam.bai:md5,c3096f52115ec1e24c46fedc41f1f3d3", "sample2_tumor.bam:md5,1c0287d24fa5b25b86e48024f2f55031", "sample2_tumor.bam.bai:md5,62849cea5a005e3d8dbe8f9edcefaf60", - "sample2.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", - "sample2.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", - "sample2.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", - "sample2.flagstat:md5,4344a8745efef9cc2a017024218d61c6", - "sample2.idxstats:md5,69467fc02c83a30084736aeea8b785fb", - "sample2.stats:md5,8635df10132c85a13f2d9878b7cf90a2", + "sample2_normal.flagstat:md5,714d0cc0c213e2640e54a16f3d0e6e7e", + "sample2_normal.idxstats:md5,72eb83bb11748dc863fef1a0a5497e4b", + "sample2_normal.stats:md5,20c47cb94f9ac739d69c57be6daf82c5", + "sample2_tumor.flagstat:md5,4344a8745efef9cc2a017024218d61c6", + "sample2_tumor.idxstats:md5,69467fc02c83a30084736aeea8b785fb", + "sample2_tumor.stats:md5,8635df10132c85a13f2d9878b7cf90a2", "sample2_whatshap_stats.gtf:md5,f15fb43f0af73d02fc73b66fdc12d5d8", "sample2_whatshap_stats.log:md5,a6767b3490cafdcbaf3b7114644028de", "sample2_whatshap_stats.tsv:md5,570796e5e291229e8872733425e0b133", @@ -610,9 +615,9 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50", "sample3_tumor.bam:md5,116b6944da4aa833a8d21c46b5f5ecfe", "sample3_tumor.bam.bai:md5,ea9eca53bbaba26d40b791a2ea1aadf6", - "sample3.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", - "sample3.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", - "sample3.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", + "sample3_tumor.flagstat:md5,8ff32d733c62c4910bf185ef24bf27cf", + "sample3_tumor.idxstats:md5,2de140e61f9e86c9c10af20dd565cc93", + "sample3_tumor.stats:md5,ecd5ea4fee37379dd5c5ae3e89dfddda", "sample3_whatshap_stats.gtf:md5,f47156e18c490ff9a4e6efd04d43acc5", "sample3_whatshap_stats.log:md5,679dcfa209888a9e69a07e4c4e4b049e", "sample3_whatshap_stats.tsv:md5,035d5aa0425ba3fc32d65268b793b424", @@ -624,10 +629,10 @@ "breakpoint_clusters_list.tsv:md5,0c0ce62e329f8de492487e8414c30a50" ] ], + "timestamp": "2026-09-09T13:55:27.445799687", "meta": { - "nf-test": "0.9.3", - "nextflow": "26.04.1" - }, - "timestamp": "2026-06-03T11:29:23.997023567" + "nf-test": "0.9.4", + "nextflow": "26.04.3" + } } } \ No newline at end of file diff --git a/workflows/lrsomatic.nf b/workflows/lrsomatic.nf index 16bb2ab2..b766eb59 100644 --- a/workflows/lrsomatic.nf +++ b/workflows/lrsomatic.nf @@ -264,13 +264,15 @@ workflow LRSOMATIC { if (!params.skip_nanoplot) { // - // MODULE: NANOPLOT_PRE (label: process_medium) + // MODULE: NANOPLOT_PRE (label: process_low) // Input: CRAMINO_PRE.out.arrow -- [meta, arrow_file] // Output: nanoplot HTML/txt reports // NANOPLOT_PRE(CRAMINO_PRE.out.arrow) + ch_nanoplot_pre_txt = NANOPLOT_PRE.out.txt + } } @@ -858,13 +860,15 @@ workflow LRSOMATIC { if (!params.skip_nanoplot) { // - // MODULE: NANOPLOT_POST (label: process_medium) + // MODULE: NANOPLOT_POST (label: process_low) // Input: CRAMINO_POST.out.arrow -- [meta, arrow_file] // Output: HTML/txt QC reports (post-alignment) // NANOPLOT_POST(CRAMINO_POST.out.arrow) + ch_nanoplot_post_txt = NANOPLOT_POST.out.txt + }