Skip to content

Commit

Permalink
added prefix to krona html results
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-VM committed Aug 30, 2024
1 parent 3e2c9b1 commit e4e6f16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bu_isciii/assets/reports/results/mag.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Here we describe the results from the MAG pipeline for multispecies metagenomic
Here we describe the results from the (nf-core/taxprofiler)[https://nf-co.re/taxprofiler/1.1.8] pipeline for multispecies taxonomic classification and profiling of shorgun short- and long-read.

* `multiqc_report.html​`: Final HTML report collecting numerical stats from each module executed in this pipeline.
* `krona/*.html`: Interactive HTML files generated by Krona, displaying the results of taxonomic classification.
* `krona/database_*.html`: Interactive HTML files generated by Krona, displaying the results of taxonomic classification for supported tools (Kraken2, Centrifuge, Kaiju, and MALT)

> [!WARNING]
> Software's versions used in this analysis can be obtained from the `MultiQC` report.
6 changes: 5 additions & 1 deletion bu_isciii/templates/mag/RESULTS/lablog_taxprofiler_results
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@ cd $DELIVERY_FOLDER/taxprofiler

# Links to reports
ln -s ../../../ANALYSIS/*ANALYSIS01_TAXPROFILER/multiqc/multiqc_report.html .
ln -s ../../../ANALYSIS/*ANALYSIS01_TAXPROFILER/krona .
mkdir -p krona
for file in ../../../ANALYSIS/*ANALYSIS01_TAXPROFILER/krona/*.html; do
base=$(basename "$file")
ln -s "../$file" "krona/database_${base}"
done

0 comments on commit e4e6f16

Please sign in to comment.